Re: Nested PopupButton Content wont show
I suppose i'll just create a new template for my case and change my design a bit. i'll probably utilize the icon column for the dynamic part by writing a code that creates a bitmap from controls....
View ArticleRibbon PopupButton Font Chooser
Hi,I am trying to create a Font Chooser using the PopupButton. The PopupButton PopupMenu is ribbon:ContextMenu. Here is the sample code.<shared:PopupButton x:Name="popTitleTextIndicator"...
View ArticleRe: Ribbon PopupButton Font Chooser
Hi Clint,We have a ribbon:FontComboBox which is nice but is a ComboBox. If you can't use that then something like this might be easy to use:<ribbon:PopupButton...
View ArticleRibbon Button tooltip shows two tooltips when VariantSize="Small"
I put a ribbon button inside a Windows Toolbar like below<ToolBar DockPanel.Dock="Top"><ribbon:Button Label="Save" VariantSize="Small" ToolTip="This should only be the...
View ArticleRe: Ribbon Button tooltip shows two tooltips when VariantSize="Small"
Hi Clint,Ribbon buttons are all made to work with screen tips. You shouldn't use the ToolTip property with ribbon controls. Instead, you should use the various ScreenTip* properties on ribbon...
View ArticleHow do i set the color of the Ribbon Background to be single color (not a...
It seems like there is no way to have the ribbon's color to just be a single color.If i setBackgroundColor = new SolidColorBrush(Colors.Red); it looks like it is dark red at the bottom, and lighter red...
View ArticleRibbon - Prism - OpenFile Command
Hi,I am currently testing the Ribbon, although this is not a question directly related to this control. I have a DelegateCommand, OpenFileCommand, which can take a String (the file path), but not...
View ArticleRe: How do i set the color of the Ribbon Background to be single color (not a...
Hi James,Is this the same sort of thing you are describing?https://www.actiprosoftware.com/community/thread/21122/removing-the-gradient-at-the-bottom-the-the-m#104097
View ArticleRibbon - Resource Dictionnaries
Hi,for some reason, my solution's Application.xaml is unable to propagate a ResourceDictionary to another project in my solution. I get a XamlParse error when initializing components (i.e....
View ArticleRe: Removing the gradient at the bottom the the metro light theme
do you have the code for the template?
View ArticleRe: Ribbon - Prism - OpenFile Command
Hi Stephane,The ribbon:Button control has a CheckableCommandParameter instance in CommandParameter by default. By specifying a value as you do there, you force it to a string instead. You might also...
View ArticleRe: Ribbon - Prism - OpenFile Command
Hi,yeah, that's what I thought. That is not a really big deal anyway; I am more concerned about my other problem (see my other post).Thanks!
View ArticleRe: Removing the gradient at the bottom the the metro light theme
Yes, if your company has licensed WPF Studio, they can download the default XAML styles/templates from their organization account page. If you have an license for the individual Ribbon product...
View ArticleRe: Ribbon - Resource Dictionnaries
Hi Stephane,We have a lot of customers who use our products on non-English systems and everything works fine for them. Could you provide some more detail on what your scenario and the problem are?...
View ArticleRe: Ribbon - Resource Dictionnaries
Well, leaving aside the language (the problem anyway is not using one language or another, it is rather having the possibility to switch; my application provides 3 different languages; I get this...
View ArticleRe: Ribbon - Resource Dictionnaries
Hi Stephane,The only time we touch the Application.Resources is with our ThemeManager. The ThemeManager will add/remove ResourceDictionaries to the Application.Resources. However it is designed to...
View ArticleHiding ApplicationButtonScreenTip
I'm using the Ribbon.When I hover on the "File" menu (which is the value of ApplicationButtonLabel), I see the tooltip "Application Button".I have been playing around with ToolTipService,...
View ArticleRe: Hiding ApplicationButtonScreenTip
Hi Vincent,Yes, you can just set this on Ribbon: ApplicationButtonScreenTipHeader="{x:Null}"
View Article