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: 24 Jan 2020 13:57 by ADMIN
Release LIB 2020.1.127
Workaround:
In the Loaded event of the RibbonWindow, use the Telerik.Windows.Controls.RibbonView.Shell.WindowChrome class to get the current window and set its ResizeBorderThickness property to 0. 

public MainWindow()
{
    InitializeComponent();
    this.Loaded += MainWindow_Loaded;
}
 
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    Telerik.Windows.Controls.RibbonView.Shell.WindowChrome chome = Telerik.Windows.Controls.RibbonView.Shell.WindowChrome.GetWindowChrome(this);
    chome.ResizeBorderThickness = new Thickness(0);
}
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
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: 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: 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: 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 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: 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: 11 Jun 2019 12:40 by ADMIN
Release R2 2019 SP1
We have a RadRibbonWindow.
When it is run on Windows XP (or on Windows 7, "Windows Classic" theme) and the DPI settings are high (above 170 %), the standard window buttons (Minimize, Restore and Close) are not displayed properly (they are cut). Also there is too much space between them.
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. 
Completed
Last Updated: 07 Feb 2019 16:11 by ADMIN

In the Crystal theme, the TitleBarBackground property is set through a style trigger to a static value. This leads to an unexpected result in the dark variation of the theme. 

As a workaround you can use the following style:

 
  <Style TargetType="telerik:RadRibbonView" BasedOn="{StaticResource RadRibbonViewStyle}">
            <Style.Triggers>
                <Trigger Property="IsHostedInRibbonWindow" Value="True">
                    <Setter Property="TitleBarBackground" Value="{telerik:CrystalResource ResourceKey=AlternativeBrush}"/>
                </Trigger>
            </Style.Triggers>
   </Style>
 

 

 

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.


Completed
Last Updated: 27 Nov 2018 11:56 by ADMIN
This is reproducible only in the FluentTheme. Setting the RadCollapsiblePanel.SmallButtonsPerColumn to 3 does not make any difference.  

The workaround is to set a higher value for the ContentHeight property of RadRibbonView, for example 120px.

The fix for this issue will be available with LIB (version 2018.3.1203) published on Monday, 3-rd December, 2018. 
 
Completed
Last Updated: 02 Nov 2018 15:37 by ADMIN
Workaround for this bug is setting Style.Triggers for this scenario.

<Style BasedOn="{StaticResource RadRibbonSplitButtonStyle}" TargetType="telerik:RadRibbonSplitButton">
  <Style.Triggers>
    <MultiTrigger>
      <MultiTrigger.Conditions>
        <Condition Property="IsChecked" Value="True"/>
        <Condition Property="IsEnabled" Value="True"/>
        <Condition Property="CurrentSize" Value="Medium"/>
      </MultiTrigger.Conditions>
      <MultiTrigger.Setters>
        <Setter Property="Foreground" Value="{DynamicResource CheckedBrush}"/>
      </MultiTrigger.Setters>
    </MultiTrigger>
  </Style.Triggers>
</Style>