Completed
Last Updated: 24 Aug 2018 12:46 by ADMIN
Completed
Last Updated: 21 Jan 2019 07:39 by ADMIN
Scheduled for:
The fix for this issue will be available with LIB (version 2019.1.121) scheduled for publishing on Monday, 21st January 2019.


Unplanned
Last Updated: 03 Jan 2019 09:50 by ADMIN
The property allows you to align the minimize, maximize and close buttons to the left or the right of the window's header. Currently, this is implemented to work only for RadWindow. Add support also for the RadRibbonWindow
Unplanned
Last Updated: 16 May 2019 10:50 by ADMIN
Every KeyTipControl is placed inside a Popup. Expose properties which could control the Popup position.
Completed
Last Updated: 06 Jun 2019 06:00 by ADMIN
Release LIB 2019.2.610 (06/10/2019)
When opening Backstage using KeyTips service, NullReferenceException is thrown when the backstage items have also had KeyTips set. 
Completed
Last Updated: 28 Jun 2019 06:06 by ADMIN
Release LIB 2019.2.701 (7/1/2019)
When the RibbonBackstage is open and then a RibbonBackstageItem is clicked to close the backstage, the ApplicationButton's FluentControl pressed state effect remains visible in the Fluent theme.
Completed
Last Updated: 03 Jul 2019 13:20 by ADMIN
Release LIB 2019.2.708 (7/8/2019)

The ribbon tab doesn't get selec if you click in the exact middle of the header of RadRibbonTab.

To work this around, extract the ControlTemplate of RadRibbonTab and move the Grid with x:Name="ContentPanel" before the Grid with x:Name="HeaderPanel".

Completed
Last Updated: 03 Oct 2019 13:01 by ADMIN
Release LIB 2019.3.1007

The HeaderVisibility property of RadRibbonTab doesn't work when changed at runtime.

A workaround is to use Visibility property of RadRibbonTab, instead of HeaderVisibility

Completed
Last Updated: 12 Jun 2020 07:16 by ADMIN
Release R2 2020 SP
When a RadRibbonSplitButton or RadRibbonDropDownButton are defined in the ApplicationMenu, their drop down content does not receive proper focus. This can be observed in the Office2016 theme. 
Unplanned
Last Updated: 10 Jun 2020 13:31 by ADMIN
When the "Automatically Hide the taskbar in desktop mode" windows setting is enabled and the RadRibbonWindow is maximized, it exceeds the screen area. 
Completed
Last Updated: 07 Sep 2020 12:14 by ADMIN
Release LIB 2020.2.907
When hovering over the buttons inside the application menu, the background color changes to dark blue, but the button text stays black, which is very hard to read.
Completed
Last Updated: 31 May 2021 08:06 by ADMIN
Release R3 2020
Setting the MinimizeButtonVisibility has no effect in some themes.
Completed
Last Updated: 16 Nov 2020 13:37 by ADMIN
Release LIB 2020.3.1116
When the EnsureHandle method of WindowInteropHelper is called on a RadRibbonWindow instance that is not shown the UI is frozen. 
Completed
Last Updated: 29 Nov 2021 12:27 by ADMIN
Release LIB 2021.3.1129 (29 Nov 2021)
When the Windows OS auto-hide taskbar feature is enabled, the RadRibbonWindow is clipped and offset on the top and left sides. This reproduces only if the window is maximized initially. Changing its state afterwards resolves the visual glitch. Also in order to recreate this the IsWindowsThemeEnabled property should be set to False, in order for the ribbon window to use its Telerik theme, instead of the Windows one.
Completed
Last Updated: 22 May 2022 21:10 by ADMIN
Release LIB 2022.2.523 (23 May 2022)
When the Visibility of the RadTabItem is set to Collapsed the keyboard navigation does not work as expected. 
Completed
Last Updated: 04 Nov 2022 08:08 by ADMIN
Release R3 2022 SP1
The backstage of the RadRibbonView cannot be opened when the control is placed inside a WinForms application. 
Unplanned
Last Updated: 14 Dec 2022 10:55 by Martin Ivanov
Currently, the titlebar text that appears when you set the ApplicationName is centered in the titlebar. Add option to align the WindowTitle element left or right in the titlebar.
Duplicated
Last Updated: 12 Jan 2023 18:22 by ADMIN
The window state of the RadRibbonWindow cannot be changed on double click over the titlebar, when you click under the middle of the title bar. The same issue occurs when you try dragging the title from this position. The issue is more noticeable when the window is maximized.
Completed
Last Updated: 13 Apr 2023 10:35 by ADMIN
Release LIB 2023.1.424 (24 Apr 2023)

NullReferenceException is thrown on start up of the application, when the IsMinimized property of RadRibbonView is set to True initially. For example, if you set it in XAML.

To work this around, set the IsMinimized property in the Loaded event handler of RadRibbonView.

private void RadRibbonView_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
	var ribbonView = (RadRibbonView)sender;
	ribbonView.IsMinimized = true;
}

 

Unplanned
Last Updated: 02 May 2023 15:25 by Martin Ivanov

Currently, the RadRibbonTab GetChildrenCore method creates automation peers only for the elements in its Items collection. There is no peer created for the element in the Header. Add support for this. 

This missing peer, leads to that the TextBlock in the Header of the ribbon tabs is not highlighted when using a UI inspecting tool (like Snoop and its Automation option or UISpy.exe).


You can find a solution that shows how to achieve this in the attached project.