Re: what's wrong about font with ribbon:button in a ribbon:menu?
ScreenTipDescription Property has the same bug.
View ArticleRe: what's wrong about font with ribbon:button in a ribbon:menu?
Hi,I'm not sure, it looks clear when I run this code. If you are seeing something else then please make a new simple sample project showing the issue and send it to our support address. Send an image...
View ArticleRe: Setting the backstage close button tint color
Just installed 573... but assets in MetroWhite still awfully empty...
View ArticleRelayCommand deriving from RibbonCommand
HiWe have implemented our application using MVVM, and for our commands we have used the RelayCommand pattern to implement commands in our ViewModels as specified here:...
View ArticleRe: RelayCommand deriving from RibbonCommand
Hi, as you saw, the InputGestures collection is defined on RoutedCommand and not on an interface so there is no other way to get that info from the command itself (since we special case RoutedCommands...
View ArticleRe: RelayCommand deriving from RibbonCommand
Would you consider adding an interface with this property and implement it on RibbonCommand, and special cast to that type instead of RoutedCommand? That way this can be extended by developers not...
View ArticleRe: RelayCommand deriving from RibbonCommand
Hi Bjørnar,What if we added an InputGestureText property to IRibbonCommandUIProvider? That way you could use the RibbonCommandUIManager to register a RibbonCommandUIProvider with that custom input...
View ArticleRe: RelayCommand deriving from RibbonCommand
I thought the shortcut text was derived from what bindings are, and not necessarily from InputGestureText property. Perhaps a long time since I did this, or poor research on my part (sorry about that)....
View ArticleRe: RelayCommand deriving from RibbonCommand
Well the key bindings are what allow hot keys to be recognized. Nothing will work without them.Our screen tips will look at the input bindings and derive input gesture text to show. But you can also...
View ArticleRibbonGallery.SelectedItem not bound
I have SelectedItem specified on my RibbonGallery but it isn't being bound.<ribbon:RibbonGallery ItemsSource="{Binding ArchivedItems}" SelectedItem="{Binding SelectedItem}"> I added a...
View ArticleRe: RibbonGallery.SelectedItem not bound
I found the fix.<ribbon:RibbonGallery ItemsSource="{Binding ArchivedItems}" SelectedItem="{Binding SelectedItem,Mode=TwoWay}"> Why isn't "TwoWay" the default? It is on every other control.
View ArticlePopupGallery categories dont appper when ItemsSource is binded to an...
Hello!I am confused with appearance of category headers in PopupGallery. When items collection is explicitly defined in XAML with ‘ribbon:PopupGallery.Category’ property on each item, the category...
View ArticleRe: RibbonGallery.SelectedItem not bound
Hi David,Thanks for the suggestion, we'll change the property to TwoWayByDefault for the next version.
View ArticleRe: PopupGallery categories dont appper when ItemsSource is binded to an...
Ok, it could a false alarm on my side.In fact, I used a custom made wrapper over ObservableCollection what allows a cross-thread access. I guess, the problem is with this wrapper because, when I...
View ArticleCan't select in ribbon gallery's popup gallery
I click on a gallery item in the popup gallery of a ribbon gallery but selection does not change. The clicked item gets highlignted but the selected item remains highlighted too.Are not popup gallery...
View ArticleRe: Can't select in ribbon gallery's popup gallery
Hi David,Can you make a new simple sample project showing this issue so we can take a look and see if there is a problem on our end? E-mail it to our support address, reference this post, and rename...
View ArticleRe: Can't select in ribbon gallery's popup gallery
I found the problem. My Item template has a text box. I added "Focusabe=False" to this text box and now it works fine.
View Articlecontent for RibbonButton
Hello,I have a suggestion for all rubbon classes that currently use ImageSource to show an icon. In many cases I prefer to use visual elements, like Path, to make a button icon. It's faster to define...
View ArticleRe: content for RibbonButton
Hi Ilia,That is because a visual can only be in one location at a time. If you use a ContentTemplate instead of Content you can have your DataTemplate be replicated in multiple locations at the same...
View ArticleRe: content for RibbonButton
Hello!Thanks for this suggestion, the probem has been solved after I binded ContentTemplate the Tag property with a DataTemplate. A icon was shown in both locations normally.However, the same approach...
View Article