Declined
Last Updated: 03 Aug 2020 11:23 by ADMIN
Navigating with the Tab key does not jump between different RadRibbonGroups even if they have their KeyboardNavigation.TabNavigation property set.
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.
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.
Declined
Last Updated: 13 Oct 2020 15:27 by Petar
When we have specified RibbonGallery, and we resize the RibbonView fast enough, the RibbonGallery is collapsed even if there is enough space to visualize.
Unplanned
Last Updated: 15 Jun 2020 14:07 by ADMIN
If you open the dropdown of the RadRibbonComboBox using the keytips support and then navigate to an item, and select it using the arrow keys, the selection is wrong. It selects the next item instead of the one highlighted by the keyboard navigation. 
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: 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. 
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");
	}
}

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: 24 Jan 2020 13:19 by ADMIN
Release LIB 2020.1.127
Black border appears around the window when SizeToContent is set to WidthAndHeight
Completed
Last Updated: 25 Nov 2019 09:20 by ADMIN
Release LIB 2019.3.1125

To reproduce this:

  • Set the RadRibbonButton LargeImage/SmallImage to a property that is larger than 16 (small image) or 32 (large image).
  • Set IsAutoSize to False. This will stretch the image on all available space for the button.
  • Set IsAutoSize to True. This should uniform stretch the picture so that it fills the auto size of 16 or 32 pixels. However, the image doesn't stretch, instead its Stretch is set to None, which expand the image to its original size. This leads to the clipping.

To work this around, avoid setting the IsAutoSize property. Or use smaller pictures - 16 or 32 pixels.

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: 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: 18 Oct 2019 11:30 by ADMIN
Release R3 2019 SP
In the application menu, we have placed a RadRibbonSplitButton. When the application menu is open, and we press Tab and Space key, the application menu is closed and the UI unresponsive until the mouse leaves the control.
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: 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: 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: 23 May 2019 13:24 by ADMIN
Release LIB 2019.2.527 (05/27/2019)
When the ContentHeight is set in Xaml or before the control is loaded it is not respected. 
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.