Problems syncing selected gallery item like the “Gallery Rows Sample”
I am trying to layout a Ribbon Gallery in a very similar way to the “Gallery Rows Sample” found in the Sample Browser. Here is the XAML I have so far.<ribbon:Group...
View ArticleRe: Problems syncing selected gallery item like the “Gallery Rows Sample”
BTW I am using Actipro version 16.1.632.0.
View ArticleBackStage and Tab and ControlTab issue
I have my app with the BackStage all set as I want and everything is working. I need to maek sure users can tab through and ge tto everything. Want to mimic Microsoft Word - Backstage Buttons/ Tabs do...
View ArticleRe: Problems syncing selected gallery item like the “Gallery Rows Sample”
Hi Eric,I believe it's using the ApplicationCommands.ApplyForeground command in the sample to accomplish this. When there is a command like in that sample and both the ribbon and popup gallery use it,...
View ArticleRe: Problems syncing selected gallery item like the “Gallery Rows Sample”
Thanks for the reply. So I added a command to both the RibbonGallery and the PopupGallery and I set IsPreviewEnabled="False" for both becaus it does not apply to this situation. I am uisng the Prism...
View ArticleRe: BackStage and Tab and ControlTab issue
Hi Hamid,Thanks for reporting this. We've made adjustments for the next build to improve this.
View ArticleRe: Problems syncing selected gallery item like the “Gallery Rows Sample”
Hi Eric,In our sample, the selected item indirectly gets updated by the code in RichTextBoxExtended.OnApplyForegroundCanExecute where it's setting UpdatedValue and is marking it Handled. Since both...
View ArticleUsing a usercontrol in a Ribbon
Hi,in my application I want a ribbon with a few ribbon tabs. One of these tabs should contain a usercontrol, which offers a group of ribbon buttons. This usercontrol is stored in another assembly than...
View ArticleRe: Using a usercontrol in a Ribbon
Hi Michael,While you can't interject controls like UserControls and Grid in between a ribbon:Tab and its ribbon:Groups, you can do what we did in our sample project under...
View ArticleRe: Problems syncing selected gallery item like the “Gallery Rows Sample”
So binding the SelectedItem of the RibbonGallery and the PopuGallery to the same property in my ViewModel did the trick.
View ArticleUsing RibbonControlServcie.Label with a ComboBox in the Ribbon
So I am trying to add controls like TextBox, ComboBox, and a DateTime control to the Ribbon. I started using the controls in the editor namespace and this is what I have so far.<ribbon:Group...
View ArticleRe: Using RibbonControlServcie.Label with a ComboBox in the Ribbon
Hi Eric,The RibbonControlService.Label should work with any control. In your scenario, I think it's probably due to variants. Try setting ItemVariantBehavior="AlwaysMedium" on your StackPanel. That...
View ArticleDisabling the backstage back button?
Hi all, is there anyway to disable or remove the backstage back button (the <- arrow button)?I would like to force the user to remain in that screen until a given action is done. Thank you.
View ArticleRe: Disabling the backstage back button?
Hi Eric,Yes please check out the "Ribbon / Controls / Built-In Miscellaneous Controls / Backstage/ApplicationMenu" topic in the documentation that comes with the product. The last section in that...
View ArticleRe: Disabling the backstage back button?
Great! thank you for pointing me at the right location.
View ArticleRe: Disabling the backstage back button?
Oh sorry, actually this isn't exactly what im looking for.I do not want to hide the backstage, just the back arrow that allow you to go in the main application. In fact i want to force the user to...
View ArticleRe: Disabling the backstage back button?
Oh sorry, I see you mean you don't want to allow them to exit Backstage. No unfortunately there isn't a way to prevent that since it's treated like a popup. You might need to have an overlay control...
View ArticleRe: Disabling the backstage back button?
Yes indeed that was my second option, to do like Office does :)Thanks for help.
View Article