This question is locked. New answers and comments are not allowed.
Hello,
1) I have a QuickAccessToolbar defined in a RibbonView thus:
The Quick Access Menu options "Show below the ribbon" and "Minimize the Ribbon" are disabled until the RadRibbonButton in the toolbar is clicked. There is no connection between them that I can find in the xaml or in my View Model. The button is enabled/disabled by a "CanExecute" handler using the DelegateCommand interface. Any ideas why these menu options are disabled by default?
2) Even if the RibbonView's IsMinimizable property is set to False, the "Minimize the Ribbon" menu option is still enabled. Clicking it does nothing.
3) If IsMinimizable is set to True, after minimizing the ribbon using either the Quick Access Menu or the minimize button, the menu's minimize option still says "Minimize the Ribbon" even when the ribbon is minimized. Shouldn't this say "Maximize the Ribbon" or something to that effect?
Thank you,
KO
1) I have a QuickAccessToolbar defined in a RibbonView thus:
<
telerikRibbon:RadRibbonView.QuickAccessToolBar
>
<
telerikRibbon:QuickAccessToolBar
CustomizationMenuVisibility
=
"Visible"
>
<
telerikRibbon:RadRibbonButton
Text
=
"Refresh"
SmallImage
=
"refresh.png"
telerik:KeyTipService.AccessText
=
"1"
Command
=
"{Binding DataContext.RefreshButton, ElementName=Ribbon}"
CommandParameter
=
"{Binding}"
/>
</
telerikRibbon:QuickAccessToolBar
>
</
telerikRibbon:RadRibbonView.QuickAccessToolBar
>
The Quick Access Menu options "Show below the ribbon" and "Minimize the Ribbon" are disabled until the RadRibbonButton in the toolbar is clicked. There is no connection between them that I can find in the xaml or in my View Model. The button is enabled/disabled by a "CanExecute" handler using the DelegateCommand interface. Any ideas why these menu options are disabled by default?
2) Even if the RibbonView's IsMinimizable property is set to False, the "Minimize the Ribbon" menu option is still enabled. Clicking it does nothing.
3) If IsMinimizable is set to True, after minimizing the ribbon using either the Quick Access Menu or the minimize button, the menu's minimize option still says "Minimize the Ribbon" even when the ribbon is minimized. Shouldn't this say "Maximize the Ribbon" or something to that effect?
Thank you,
KO