Re: Determine if a ribbon tab is selected
Hi,I added the binding<ribbon:Ribbon x:Name ="ribbon" SelectedTabChanged="dockPanel_SelectedTabChanged" SelectedTab="{Binding MySelectedTab}">I neither get a message about a failed binding nor do...
View ArticleRe: Changing Screen Resolution & screen Rotation
Hi Brett,This is something we are aware of and has been a particularly frustrating issue. There is a description of our findings in this...
View ArticleRe: Determine if a ribbon tab is selected
Hi Mark,SelectedTab is a dependency property so it should be working with bindings ok. If you are still having trouble, please make a new very simple sample project that shows it not working and email...
View ArticleRe: Determine if a ribbon tab is selected
Hi,the problem is gone. I cannot, however, tell you the cause of the problem. Thank you for your help.
View ArticleCannot serialize/deserialize ApplicationMenu items on the QAT
Hi,I have an application that serializes the QAT during shutdown and tries to deserialize it during startup. But it does not seem to work for ApplicationMenu items where the items are built using the...
View ArticleRe: Cannot serialize/deserialize ApplicationMenu items on the QAT
Hi Ilian,Yes please email a new simple sample project that shows the problem to our support address and reference this thread. Be sure to rename the .zip file extension so it doesn't get spam blocked....
View ArticleRouted Command raised on opened Backstage Application Menu
Hello,We have application which used Backstage as Application menu, also we use ToolWindows as global plugins, each of the plugin has their own global routed commands with specific gestures. We faced...
View ArticleRe: Routed Command raised on opened Backstage Application Menu
Hi Aleksey,Backstage is opening within the context of the same Window and isn't a separate Window or Popup. Thus any routed commands that are available at the root Window level will still be...
View ArticleRecentDocumentMenu ContextMenu
Hi,I'm trying to determine which recent document item was highlighted when the RecentDocumentMenu control's context menu is shown, so I can add context menu functionality similar to Office. I'd hoped...
View ArticleRe: RecentDocumentMenu ContextMenu
Never mind, I found it - it was in the e.OriginalSource.DataContext in the ContextMenuOpening event for anyone else looking.
View ArticleOverride the AddToQuickAccessToolbar
Is is possible to override the AddToQuickAccessToobar RibbonCommand? I want to be able to change the formatting of the buttons that get sent to the QAT. I am able to capture the...
View ArticleRe: Override the AddToQuickAccessToolbar
Hi Mark,While you probably can't override that command, you can handle the CloneService.CloneCreated event and modify the cloned instance there. Check out the Customizing QAT QuickStart for an example...
View ArticleMultiple Ribbons
Hello,I've been having some problems regarding multiple ribbons in a ribbon window.I'm using two ribbons, the first ribbon is used to select different documents, and the second one is used for options...
View ArticleRe: Multiple Ribbons
Hi Tommy,Any time a Ribbon is loaded up, it tries to find an ancestor RibbonWindow. If it finds one, it registers itself with that RibbonWindow. Only one Ribbon can be registered with a RibbonWindow...
View ArticleRe: Multiple Ribbons
Hey,That is what I thought it meant, but it does not solve my problem.Is there any other way I can go around this issue? For example, if I set the icon of the window to nothing, this does not happen,...
View ArticleRe: Multiple Ribbons
Hi Tommy,The icon is in the RibbonWindow template with name "PART_ApplicationIcon". In an inherited RibbonWindow class you might be able to get it via GetTemplateChild and then manually hide it.Are...
View ArticleRe: Multiple Ribbons
Hey,I tried the xaml code that you supplied, but for me it does not work because I must have the scenic style as false to have a circle button with an image inside of it.It works to get the Image by...
View ArticleRe: Multiple Ribbons
Hi Tommy,It would work much easier with the scenic app menu button style. But if you want to do the orb, then something like this might work (due to the order the ribbons are defined in...
View ArticleRe: Multiple Ribbons
Hey,Thank you! Now I understand.The reverse order thing as described in the original post did not work for me, because I believed it was the order in xaml that mattered, but in fact, the order should...
View ArticleRe: Override the AddToQuickAccessToolbar
Thanks for the prompt response on that. It was helpful. Sorry my response was so late.
View Article