Close command needed when using the close button The command could be intersected as follow: static MainWindow() { RadRibbonWindow.IsWindowsThemeEnabled = false; CommandManager.RegisterClassCommandBinding(typeof(MainWindow), new CommandBinding(Telerik.Windows.Controls.RibbonView.Shell.SystemCommands.CloseWindowCommand, CloseWindowExecuted, canExecute)); } Please note that this command is available only if RadRibbonWindow.IsWindowsThemeEnabled is set to "false". Available in R1 2017 Release
Expose a property to control the Visibility of the RibbonWindow icon separator Declined: The Icon separator could removed once the Windows is loaded, like follows: void MainWindow_Loaded(object sender, RoutedEventArgs e) { var iconPanel = this.ChildrenOfType<FrameworkElement>().Where(x => x.Name == "IconPanel").FirstOrDefault() as StackPanel; if (iconPanel != null) { var border = iconPanel.ChildrenOfType<Border>().FirstOrDefault(); if (border != null) { border.Visibility = System.Windows.Visibility.Collapsed; } } }
RadRibbonDropDownButton DropDownIndicator isn't rotated when the DropDownButtonPosition is Right and the DropDownPlacement is Right
When the component is hosted in a RibbonWindow and its CollapseThresholdSize is modified, if the BackstageMenu is opened on start-up, the TitleBar of the RibbonView is misaligned. Instead of displaying in the RibbonWindow title bar, it initially displays underneath it. Once you close the Backstage, the title bar is moved in the Window's TitleBar.
When the Title property is set to "" the RibbonView displays the ApplicationName two times. If the Title is set to null via binding the control displays the ApplicationName three times. The problem doesn't occur when the RadRibbonView is hosted in a vanilla Window.
Please add support for the Backstage in Office 2013 with the back button. Available in Q3 2014
The keyborad focus is travers through the invisible element in the template of the RadRibbonTab ("RightScrollButtonElement "). Available in LIB version: 2014.3.1222
Implement keyboard navigation for the items in the ApplicationMenu - through arrow keys for example.
Available in LIB version: 2016.2.516
This is reproducible only if the application that holds RadRibbonView is started on another machine and you are connected to it through Remote Desktop Connection. When the keytips are enabled and you click in the main machine, then click inside the remote desktop window, the keytips are displayed.
Initially RibbonView gets rendered design-time. Trying to edit RibbonTab-s or add new one causes the whole control to dissapear in the designer. Clean and rebuild of the solution doesn't help -- cleaning the Shadow cache of Visual Studio Designer is the onliest thing that helps. The issue reproduces with Class Library containing the Ribbon setup and IsWindowsThemeEnabled property of RibbonWIndow turned off (default value).
The RadGallery item has a property SelectionMode, inherited from ItemsControlSelector. But it is not implemented. I would like to use the Gallery to select multiple options instead of only one: *the gallery shall keep open on select one item *the items shall toggle selection on item click
In scenarios with more than one monitor when the RibbonWindow is run on 64bit process and e.g. using VBE7.dll, the WM_NCHITTEST message, which is sent to the window in order to determine what part of the window corresponds to a particular screen coordinate, could provide lParam with value which overflows Int32. Available in LIB version: 2017.1.313
Please support the new Office Simplified Ribbon: https://support.office.com/en-us/article/use-the-simplified-ribbon-44bef9c3-295d-4092-b7f0-f471fa629a98?ui=en-US&rs=en-US&ad=US.
1. When the RibbonWindow is maximized the draggable area ends below the WindowTitle
2. In Normal state - the draggable area could be expanded in Material, Fluent and Crystal themes
A possible workaround is to change the WindowCaptionHeight property:
Setting the KeyTipService.AltAccessText attached property on a RadRibbonGroup element should display a keytip on the dialog launcher of the group, when the keytips are activated.
Currently, if the group is collapsed, you can expand it using its AccessText. However, in this case the keytip of the dialog launcher is not displayed.
To work this around, subscribe to the Loaded event of RadRibbonGroup and set the KeyyTipService.AccessText property directly to the RadRibbonButton representing the dialog launcher.
private void RadRibbonGroup_Loaded(object sender, RoutedEventArgs e)
{
var group = (RadRibbonGroup)sender;
var button = group.ChildrenOfType<RadRibbonButton>().FirstOrDefault(x => x.Name == "DialogLauncher");
if (button != null)
{
KeyTipService.SetAccessText(button, "D");
}
}
The content of RadBackstageItem is not stretched within the available area in the content area of the RadRibbonBackstage control. There is a gap between the title bar of the RadRibbonView control and the top border of the content area.
This reproduces with the Material theme, but it is possible to appear also in other themes.
To work this around, you can extract the ControlTemplate of RadRibbonBackstage and re-order the layout in order to stretch the content in all the available space. Check the attached project.