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.
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.
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: 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;
            }
        }
Unplanned
Last Updated: 21 Feb 2019 15:20 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>
 

 

 

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.
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.

Unplanned
Last Updated: 11 Dec 2018 14:13 by ADMIN
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: 01 Apr 2015 11:23 by ADMIN
A binding error occur in the output on Windows7 without aero.
(System.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=IsActive; DataItem=null; target element is 'Button' (Name='PART_MinimizeWindowButton'); target property is 'NoTarget' (type 'Object'))

Available in LIB version: 2015.1.0604
Completed
Last Updated: 27 Jul 2015 14:18 by ADMIN
If a contextual tab is collapsed when the contextual group is activated and then its visibility is set to Visible, the tab is not shown (only if you reopen the group).

Available in LIB version: 2015.2.803
Completed
Last Updated: 19 Mar 2015 14:09 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: RibbonView
Type: Bug Report
0
When the Taskbar is auto-hidden, if the RibbonWindow is maximized, the taskbar cannot be displayed.

Available in LIB version: 2015.1.2303
Unplanned
Last Updated: 04 Jan 2017 07:26 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: RibbonView
Type: Bug Report
0

			
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: 26 Mar 2015 15:57 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: RibbonView
Type: Feature Request
0
WindowChrome is not updated after dynamic theme change on Windows7(from Aero to NonAero)

Will be available in Q1 2015 SP.
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.