Re: RibbonWindow not closing when double-clicking system menu
Same here with 13.2.0591.On my Windows 7 machine, the ApplicationIcon does not react to double or single clicks. It's completely dead.On Windows 8 your sample applications run fine.
View ArticleRe: RibbonWindow not closing when double-clicking system menu
Hello,I can repro it in that older 2013.2 build (when Aero glass is active) but can't in the later 2014.1 builds. Please try to upgrade to the newer version since it appears that bug was already fixed.
View ArticleAdding items to the RibbonWindow title bar
I'd like to add a couple of dropdown menus to the title bar (just to the left of the minimize button). Essentially, I want to do something very similar to what VS 2013 does with...
View ArticleRe: Adding items to the RibbonWindow title bar
Hi Scott,RibbonWindow has a pre-built WindowChrome instance that it uses to do its chrome rendering. You can get that instance in code by doing "var chrome = WindowChrome.GetChrome(this)" in the...
View ArticleAnimatedExpander keeps Width after being collapsed
Hello,I am using the AnimatedExpander with a content that is wider than the containing scroll viewer. So a horizontal scroll bar appears when I fill the content on expanding. When I collapse the...
View ArticleScreenTipService opens through other windows
Hello,I am using Tooltips by applying the ScreenTipService.These screen tips open up even when my application is covered by another window, like e.g. a web browser. (I move the other window over my...
View ArticleRe: AnimatedExpander keeps Width after being collapsed
Hi Martin,When I did a simple repro, I saw it initially collapsed to the content's width, which does look correct based on how the AnimatedExpanderDecorator (the main piece that supports the animations...
View ArticleRe: AnimatedExpander keeps Width after being collapsed
Thank you for clarifying! I can live with that.
View ArticleRe: ScreenTipService opens through other windows
Hi Martin,Can you email our support address with a simple sample that shows the issue? We would like to debug the problem using that and make sure that whatever code changes we make will fix the...
View ArticleRe: ScreenTipService opens through other windows
I have just sent a simple example. Thanks for your support!
View ArticleRe: ScreenTipService opens through other windows
Hi Martin,Thanks for the sample. We were using VisualTreeHelper.HitTest to locate the element and it turns out that method ignores IsVisible by default, meaning it allows invisible elements to be...
View ArticleRe: ScreenTipService opens through other windows
Thank you, this is very much appreciated!
View ArticleRibbonWindow background not set with IsGlassEnabled true
Hello to everybody,It looks like the background of a RibbonWindow is not applied unless the IsGlassEnabled property is set to false.If the IsGlassEnabled property is not set or it is set to true then...
View ArticleRe: RibbonWindow background not set with IsGlassEnabled true
Hi Roberta,Yes, the WindowChrome (which is used by RibbonWindow interally to do the chroming) has to alter the Window.Background in order to support configurations of glass and non-glass so that will...
View ArticleDefault One Ribbon Tab Background Color
We need to have a ribbon tab color to be defaulted. how can we achieve it?
View ArticleRe: Default One Ribbon Tab Background Color
Hi Harish,The only tabs that have color accents are the contextual tab group tabs. The other normal tabs aren't supposed to have any color accents per the Microsoft ribbon specifications, so we don't...
View ArticleNested PopupButton Content wont show
Hi,I am trying to build a control using the PopupButton and i want the PopupContent to be multilevel. Here is a sample code:<controls:PopupButton Height="22" HorizontalAlignment="Left" Width="100"...
View ArticleRe: Nested PopupButton Content wont show
Hi Clint,That won't work since you need to use ribbon:Button, ribbon:PopupButton, ribbon:SplitButton, and ribbon:Separator controls in a ribbon:Menu instead of native WPF MenuItems. If you switch to...
View ArticleRe: Nested PopupButton Content wont show
Yeah I tried that one already. My problem with that is you can only set the "Label" property which takes only a String object type. I need it to be a Content object because I need it dynamically change...
View ArticleRe: Nested PopupButton Content wont show
Hi Clint,That is correct, the ribbon menu items require a text string. I would recommend you possibly bind their Label with a value converter that can convert your real object values to an appropriate...
View Article