Completed
Last Updated: 30 May 2017 10:04 by ADMIN
Pressing Alt to activate the KeyTips and then Alt+Tab leads to NullReferenceException (especially on slower machine )


Available in LIB version: 2017.2.605
Unplanned
Last Updated: 12 Jul 2018 12:35 by Dinko
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 2
Category: RibbonView
Type: Feature Request
1

			
Unplanned
Last Updated: 06 Dec 2017 12:59 by ADMIN
Completed
Last Updated: 14 Feb 2018 09:44 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RibbonView
Type: Bug Report
1
The title bar has a fixed White Background set. The workaround is to set the TitleBackground of RadRibbonView to Black.
Completed
Last Updated: 25 Jan 2021 11:33 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 1
Category: RibbonView
Type: Feature Request
1

			
Unplanned
Last Updated: 18 May 2018 09:55 by ADMIN
The feature should be similar to the TabStripAdditionalContent(https://docs.telerik.com/devtools/wpf/controls/radribbonview/how-to/howto-additional-content-near-help-icon)  of RadRibbonView and RadTabControl. It would be useful to include additional information and functionality like in the MS Office tools. For example the Outlook app (check the attached image).
Completed
Last Updated: 24 Aug 2018 12:48 by ADMIN
As a workaround, you can set the FocusVisualStyle of the DropDownPopupContent element in the template of the RadRibbonDropDownButton  to null or add an implicit style for ContentControl setting the FocusVisualStyle to null.
Unplanned
Last Updated: 12 Sep 2018 11:13 by ADMIN
Completed
Last Updated: 09 Oct 2018 08:37 by ADMIN
The current workaround is to handle the RadTabItems' PreviewMouseLeftButtonDown event like so:

         public MainWindow()
        {
            InitializeComponent();
            EventManager.RegisterClassHandler(typeof(RadRibbonTab), PreviewMouseLeftButtonDownEvent, new MouseButtonEventHandler(OnClick), true);
        }

        private void OnClick(object sender, MouseButtonEventArgs e)
        {
            var tab = sender as RadRibbonTab;
            var ribbon = tab.ParentOfType<RadRibbonView>();
            if (ribbon.IsApplicationMenuOpen)
            {
                ribbon.SelectedItem = tab;
            }
        }
Completed
Last Updated: 25 May 2023 13:34 by ADMIN
The attached project demonstrates a possible approach for handling this - by editing RadRibbonWindow's control template and specifying a converter for the PART_Icon Image's Width and Height bindings. The converter in turn takes into account the DPI of the current monitor.
Unplanned
Last Updated: 11 Dec 2018 14:13 by ADMIN
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>
 

 

 

Unplanned
Last Updated: 21 Feb 2019 15:20 by ADMIN
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: 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: 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: 24 Jan 2020 13:19 by ADMIN
Release LIB 2020.1.127
Black border appears around the window when SizeToContent is set to WidthAndHeight
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.
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.