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.


Unplanned
Last Updated: 03 Jan 2019 09:50 by ADMIN
The property allows you to align the minimize, maximize and close buttons to the left or the right of the window's header. Currently, this is implemented to work only for RadWindow. Add support also for the RadRibbonWindow
Unplanned
Last Updated: 11 Dec 2018 14:13 by ADMIN
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>
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
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

			
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
Unplanned
Last Updated: 26 Jun 2018 11:28 by ADMIN
Allow the RadRibbonView to ignore the windows menu location settings for the MinimizedPopup
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: 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).
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.