Re: Backstage icons are missing
Hi Adam,Template extraction via external tools is never reliable. If your company has a WPF Studio suite license, you can download the default styles/templates from your organization account page....
View ArticlePopupContent panel not closing
So I'm using a Grid panel for the content of a pop-up on a split button. What I want to happen if that whenever the user clicks in the space the click is handled by the controls the Grid before closing...
View ArticleRe: PopupContent panel not closing
Hi Jake,Can you explain this in a bit more detail, perhaps by giving a step by step example using our Popup Layout QuickStart? Thanks!
View ArticleSetting Ribbon Group.ItemsSource results in an OutOfMemoryException
I understand that your Ribbon was not built with MVVM in mind. I tried to extend it on my own to support this.This worked well with my own StackPanel which adds an ItemsSource property. The items in...
View ArticleRe: Setting Ribbon Group.ItemsSource results in an OutOfMemoryException
I made my own Group which overrides the ItemsSource property and does the foreach above which fills the Items collection. This seems to work.
View ArticleRe: Setting Ribbon Group.ItemsSource results in an OutOfMemoryException
Hi Michael,Thanks for the sample. We'll reply to the support ticket email.
View ArticleTweaking Ribbon
Hi,comparing the appearance of the ribbon with Word 2016, for example, shows that some paddings/margins are a bit off. Not a biggie but I was wondering if there's an easy way to tweak those paddings to...
View ArticleRe: Tweaking Ribbon
Hi Stefan,It does look like they've added some more padding as compared to the older Office builds. We'll take a look and will make some adjustments for the next build.
View Articleshared/PopupButton won't go away
I have a shared PopupButton with a ListBox as the content. If I <Alt-Tab> to another app while the content is popped up, it doesn't close and shows on top of the other app. Is there any way...
View ArticleRe: shared/PopupButton won't go away
Hi John,That scenario shouldn't happen if you have the StaysOpen feature off. When that feature is off (the default), the popup will hide when focus moves elewhere. Otherwise, you'd have to watch for...
View ArticleRe: PopupContent panel not closing
I got this working by utilising the ribbon Button class, which have the property StaysOpenOnClick that I set to false
View ArticleQAT cloning woes for User Control
I have a UserControl as the content for a SplitButton's Content, which works as intended in the ribbon, but when added to the QAT falls apart. My main issue is the MultiBinding for the ribbon Button...
View ArticleRe: QAT cloning woes for User Control
Hello,I believe what's happening is that the binding inside the UserControl might be getting replaced by a fixed value. I think it's working better if you do something like this where you effectively...
View ArticleInput Bindings and Tooltip on Ribbon Buttons
I am using Ribbon and my Gestures correctly show on the RibbonButton. I have a few that use the 'Shift' as modifier key and I have to go the route of InputBinding. I am adding them correctly AND they...
View ArticleRe: Input Bindings and Tooltip on Ribbon Buttons
Hi Hamid,You can set the button's InputGestureText to specify your own gesture string as needed.
View ArticleRe: Input Bindings and Tooltip on Ribbon Buttons
Well I am doing this though Binding: Her eis the xaml:<apribbon:Menu apribbon:Menu.IsMenuItemInputGestureTextVisible="True"><apribbon:Button...
View ArticleRe: Input Bindings and Tooltip on Ribbon Buttons
Hi Hamid,Maybe you could inherit RibbonCommand and add a property for InputGestureText on that and then bind to it like:<apribbon:Button Command="tbcommands:TaskBuilderRoutedCommands.ExpandRegions"...
View ArticleRe: Input Bindings and Tooltip on Ribbon Buttons
Thank you, I figured I would have to do something like that to keep the entire project sort of dynamic where everything is defined in one place.
View Article