Declined
Last Updated: 13 Jan 2015 17:01 by Alfredo
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; } } }
Completed
Last Updated: 08 Aug 2016 14:11 by John Hodgson
Declined
Last Updated: 08 Oct 2020 12:07 by Petar
StackOverflowException is thrown when clicking on the group header and then click on a RibbonDropDownButton inside the DropDownContent of a collapsed RibbonDropDownButton.
Unplanned
Last Updated: 03 Jan 2017 21:15 by ADMIN
The minimized content is not closed when you click outside of the ribbon when you have explicitly MouseUp-ed outside of the RibbonView aria.
Completed
Last Updated: 14 May 2016 06:30 by ADMIN
Completed
Last Updated: 13 Mar 2017 09:51 by ADMIN
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
Completed
Last Updated: 15 Jun 2020 08:55 by ADMIN
Release LIB 2020.2.6.08

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");
	}
}

Completed
Last Updated: 03 Nov 2016 13:51 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
2
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
Unplanned
Last Updated: 03 Jan 2020 09:54 by ADMIN

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:

 var parameters = SystemParameters2.Current;
 parameters.GetType().GetProperty("WindowCaptionHeight").SetValue(parameters, SystemParameters2.Current.WindowCaptionHeight + 26, null);


Completed
Last Updated: 11 Aug 2016 14:05 by ADMIN
ActivatePreview event does not fire when the  gallery is databound

Available in Q1 2015 Release.
Completed
Last Updated: 11 Aug 2016 14:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
2
Add an way to include the Microsoft standard "Press F1 for help" to screentips in the ribbon, including the behavior to perform an action when the F1 key is pressed.

UPDATE: The RibbonView exposes a HelpCommand property which basically sets the Help button command. Additionally the Help button has a predefined ScreenTip which content is controlled by the “RibbonViewHelp” resource key. You can easily change the value returned by the ResourceManager for that resource key to change the default ScreenTip information.

As for performing a custom action on F1, this is considered application logic which can easily be implemented through InputBindings (http://msdn.microsoft.com/en-us/library/system.windows.uielement.inputbindings%28v=vs.110%29.aspx).
Completed
Last Updated: 24 Sep 2019 06:56 by ADMIN
Release LIB 2019.3.923
In some cases an InvalidOperationException is thrown when the control is loaded too early (before it is added to the visual tree). This reproduces only when the ribbon's content is minimized initially.

To work this around, you can set the IsMinimizable property of RadRibbonView to False.
Completed
Last Updated: 04 Feb 2016 13:32 by ADMIN
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.
Unplanned
Last Updated: 06 Apr 2020 19:01 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 2
Category: RibbonView
Type: Feature Request
2
Implement keyboard navigation for the items in the ApplicationMenu - through arrow keys for example.
Completed
Last Updated: 19 Nov 2014 16:37 by ADMIN
Created by: John Hodgson
Comments: 1
Category: RibbonView
Type: Feature Request
2
Please add support for the Backstage in Office 2013 with the back button.

Available in Q3 2014
Completed
Last Updated: 04 Feb 2016 13:32 by Christian
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: RibbonView
Type: Bug Report
2
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.
Completed
Last Updated: 08 Sep 2022 09:57 by ADMIN
Release R3 2022
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.
Completed
Last Updated: 02 Dec 2019 11:38 by ADMIN
Release R1 2020
RadRibbonDropDownButton DropDownIndicator isn't rotated when the DropDownButtonPosition is Right and the DropDownPlacement is Right
Completed
Last Updated: 20 Feb 2015 15:43 by ADMIN
The keyborad focus is travers through the invisible element in the template of the RadRibbonTab ("RightScrollButtonElement ").

Available in LIB version: 2014.3.1222
Unplanned
Last Updated: 04 Jan 2017 13:33 by ADMIN
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).