Re: Using a three state ribbon checkbox in a ribbon popup button
I created a sample app and saw that the visuals for all three states. In my application, the indeterminate state appears to be identical to the false state. Our application has some special theming...
View ArticleRe: Using a three state ribbon checkbox in a ribbon popup button
Hello,All the UI for menu-based CheckBoxes is in ButtonBase.xaml.
View ArticleDisable "backstageCloseButton" when no documents are open
I would like to disable the backstage close button (circle button with arrow in the upper left of backstage) when there are no documents opened. In other words, I would like the backstage to be the...
View ArticleRe: Disable "backstageCloseButton" when no documents are open
Hi Josh,The button uses the RibbonCommands.ToggleApplicationMenu command, and there is a default CommandBinding on RibbonWindow. I wonder if you persist the default CommandBinding, the remove it from...
View ArticleNot able to change background color of checkcox with CheckBoxKey style.
Hi,We are trying to change the background of checkboxes in our application depending upon some property.For this we have used trigger to change background color of checkbox. But it’s not working.We...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hello,Your company has licensed WPF Studio so whoever is listed on the account should have access to download our default styles/templates. You can then look up the CheckBox style we provide in the...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hi,Could you please share the link, from where i can download default styles/templates.Version which i am using is : 11.1.545.0Thanks,Piyush
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hello,You don't seem to be associated with your company's account, but if you ask one of your co-workers who is, they can download the default styles and templates if they go to your company's...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hi,Thanks for quick response.I was able to pull out the style for checkboxkey. But not able to figure it out to make it work as per my requirement.Below is the changed style i am using: <Style...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hello,It looks like you changed all of the brush resource references from their defaults and perhaps what you entered isn't resolving correctly. That's probably why you don't see things working...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hi,I have tried what you are suggested like this:<Style TargetType="CheckBox" BasedOn="{StaticResource {x:Static ribbon:RibbonStyles.CheckBoxKey}}"><Setter Property="FontFamily"...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
If the background isn't taking effect and you are sure that the DataTrigger is actually firing, perhaps it's something in the Template that is overriding the background setting. You could include our...
View ArticleRibbonWindow close button is getting disabled if we diable RibbonWindow.
Hi,We want to disable a RibbonWindow control. But when we set RibbonWindow's IsEnabled to false it also disable close (X) button of that RibbonWindow.Is there any way to disable RibbonWindow without...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hi,In checkbox control template ComponentResourceKey is given asComponentResourceKey TypeInTargetAssembly={x:Type editors:PartEditBox}, ResourceId=OfficeCheckBoxOuterBorderPressedBrush} Please refer...
View ArticleRe: RibbonWindow close button is getting disabled if we diable RibbonWindow.
Hello, I'm not sure what you mean by disabling a RibbonWindow, which is a Window. Can you provide more information on what you are trying to do? If you disable the entire Window, the chromed buttons...
View ArticleRe: Not able to change background color of checkcox with CheckBoxKey style.
Hello,The resource you mention is in the Editors assembly and you need to make sure you have the "editors" xmlns set appropriate at the top of your XAML so it can be recognized. All of our Editors...
View ArticleThe QAT is drawing on top of the WindowChrome.IconSource
I am trying to put together a user interface that has a ribbon that is very similar to the Office 2013 layout. The key points we would like are the following.Backstage File tab that fills the whole...
View ArticleRe: The QAT is drawing on top of the WindowChrome.IconSource
Hi Eric,The RibbonWindow.Icon property (not the WindowChrome.IconSource property) is what is designed to show up properly in a RibbonWindow for the icon area. I believe the RibbonWindow template...
View ArticleRe: The QAT is drawing on top of the WindowChrome.IconSource
Thanks for the reply. So the RibbonWindow.Icon property is designed to be next to the QAT and all on the same “row” left justified with the min, max, and close buttons (which are right justified),...
View ArticleRe: The QAT is drawing on top of the WindowChrome.IconSource
Hi Eric,What you stated above is correct. RibbonWindow has a customized set of window templates that are designed for windows that contain a Ribbon. They are meant to have a 16x16 icon that lies next...
View Article