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: 09 Oct 2018 05:45 by ADMIN
This is tested and reproducible in the Office2016 and Material themes. Probably it can be reproduced also with other new themes which use glyphs.

The CPU goes high because the RadRibbonGroup contains a GroupChrome element which has a TextBlock with the GlyphAdorner.ShowGlyphInDesignTime property set to True. 

To resolve this:

1.Extract the ControlTemplate of the RadRibbonGroup control.
2.Extract the ControlTemplate of the GroupChrome control.
3.Find the TextBlock element in the GroupChrome ControlTemplate.
4.Remove the telerik:GlyphAdorner.ShowGlyphInDesignTime  setting from the TextBlock
5.Set the Template of the GroupChrome in the RadRibbonGroup ControlTemplate to the custom GroupChrome template.
6.Apply the custom RadRibbonGroup template. 
Unplanned
Last Updated: 12 Sep 2018 11:13 by ADMIN
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.
Completed
Last Updated: 24 Aug 2018 12:46 by ADMIN
Completed
Last Updated: 03 Jul 2018 16:08 by ADMIN
If you have RadRibbonView control and xaml and design views are open, when click on some ribbon control (e.g. Tab or Button), the design view gets the focus and Smart Tag adorner is open. Moreover, the menu cannot be closed using "Close" button, but only when click outside the ribbon.

Available in LIB version: 2017.2.605
Completed
Last Updated: 13 Jun 2018 06:20 by ADMIN
Unplanned
Last Updated: 24 May 2018 07:23 by ADMIN
Several galleries in collapsed state. Open rightmost so that its popup is outside wpf window.

Then resize the window so that gallery goes into large state. The height of the RibbonGallery is incorrect and smaller than expected.

Workaround is to set MinHeight to (for example 67) to all RibbonGalleries.
Unplanned
Last Updated: 26 Mar 2018 16:11 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.
Unplanned
Last Updated: 06 Dec 2017 12:59 by ADMIN
Unplanned
Last Updated: 14 Nov 2017 09:02 by ADMIN
Windows10 on two monitors, at least one of them is with higher DPI -125 , 150 %.

This leads to unexpected black gap (glitch) between the RibbonWindow TitleBar and Content.

Partial workaround is to set manually a margin on the WindowDecorator:

  private void RadRibbonWindow_Loaded(object sender, RoutedEventArgs e)
        {
                Grid windowDecorator = this.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name == "MaximizedWindowDecorator");
                windowDecorator.Margin = new Thickness(0, -1, 0, 0);          
        }
Won't Fix
Last Updated: 25 Oct 2017 16:16 by ADMIN
In a two monitors scenario the ApplicationMenu appears on the left monitor when the RibbonView with negative left margin is hosted in a RibbonWindow which is maximized on the right monitor.

EDIT:
We are closing this issue as the described behavior as expected. When logged first, the negative left margin of RibbonView was not taken into account.
When popup opens and its parent starts on the left monitor, popup calculates that it cannot fit entirely and changes its direction of opening. This expected by the WPF Framework.
When you give negative left margin of the RibbonView, its application button might also goes with 1-2 (or more) pixels on the left monitor. Then popup (the application menu opens in a popup) has no space and changes its opening direction to left.
This is expected and the only reasonable solution would be changing the negative left margin to positive or 0.

Completed
Last Updated: 09 Oct 2017 13:18 by ADMIN
Completed
Last Updated: 09 Oct 2017 12:18 by ADMIN
Fix available in LIB Version 2017.3.1009.
Completed
Last Updated: 25 Aug 2017 11:17 by ADMIN
Unplanned
Last Updated: 09 Aug 2017 09:06 by ADMIN
Currently, RadRibbonView's OnApplyTemplate method can be called after adding the new tabs so that the group and tabs are redrawn correctly.
Unplanned
Last Updated: 27 Jul 2017 17:53 by ADMIN
The default size is 9. If you change it the issue occurs. This brings a visual glitch in the window. The title text is resized but the titlebar is not.

Note: This is reproducible only if the DPI is larger than 100%.

To work this around manually set the size of the titlebar element.

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    Grid windowDecorator = this.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name =="MaximizeWindowDecorator");
    RibbonTitleBarPanel ribbonTitlePanel = this.ChildrenOfType<RibbonTitleBarPanel>().FirstOrDefault(x => x.Name == "RibbonTitleBarPanel");
    windowDecorator.RowDefinitions[0].Height = newGridLength(ribbonTitlePanel.ActualHeight);
}
Unplanned
Last Updated: 19 Jul 2017 10:23 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 2
Category: RibbonView
Type: Bug Report
2
RibbonWindow icon appears clipped when the DPI  is set larger than 100%. Also, the icon separator is offset.