The ScreenTip of the RadRibbonView throws an exception when added to a dynamically created element
The MinimizeButton of the RadRibbonView have mismatched states(When the ribbon is collapsed the arrow should be pointing Up, and when the ribbon is collapsed should be pointing Down) not the other way around
If a RibbonView with Backstage menu is hosted in a RibbonWindow and the window's MinWidth and MinHeight properties are applied, when the Backstage is opened the size restrictions are no longer respected.
The BackstageItems are not rendered as expected when the RadRibbonView is hosted in apanel with flow direction set to right to left.
ApplicationName is off center when TabStripAdditionalContent contains an element with long text/content
Add thin border in the RadRibbonWindow between the Tittle and RibbonView. We want the look of the window to be identical to how a non-implicit RadRibbonWindow would look (i.e., without the Themes directory with the style XAML files). Alternatively, if the title bar is taller and the borders are as thick as a normal window (e.g. Notepad), that is acceptable too.
The Title of the RadRibbonWindow is not diplayed unless there is a RadRibbonView in the window.
When you have set the Windows task bar to auto-hide and you maximize an RadRibbonWindow, you are not allowed to visualize the task bar on top of the RadRibbonWindow. Available in LIB version: 2015.1.2303
You can not click the ColorPicker when it is inside a RadRibbonSplitButton.
The title of the RadRibbonWindow can't be trimmed when resizing the window. Even the window's buttons are overlapped
Expose a property to control the Visibility of the RibbonWindow icon separator Declined: The Icon separator could removed once the Windows is loaded, like follows: void MainWindow_Loaded(object sender, RoutedEventArgs e) { var iconPanel = this.ChildrenOfType<FrameworkElement>().Where(x => x.Name == "IconPanel").FirstOrDefault() as StackPanel; if (iconPanel != null) { var border = iconPanel.ChildrenOfType<Border>().FirstOrDefault(); if (border != null) { border.Visibility = System.Windows.Visibility.Collapsed; } } }
When ribbon is placed on two monitors the minimized popup is misplaced.
In WPF the WindowsFormsHost control is displayed on top of the Backstage menu Reason for declining: The WindowsFormsHost element is drawn on top of any Adorner elements. As the RadRibbonBackstage is an Adorner the WindowsFormsHost is drawn on top of it. As a workaround to this framework limitation you could bind Visibility of the WindowsFormsHost to the IsBackstageOpen property of the RadRibbonView and collapse/hide it when the backstage is open. You can find more information about the WindowsFormsHost and its features and limitation in this article ( http://msdn.microsoft.com/en-us/library/ms744952.aspx ).
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.
Add a possibility to imitate fullscreen mode.
Drawing graphics inside the RadRibbonWindow causes performance hit. More information and videos in the support thread
When maximized (or when dragged from maximized), RadRibbonWindow ,might not render it's chrome. Reproducable on Windows 7, 64bit machine.
When the window is resized, the Title should transform to Shorter Text + "...." like in MS Officce (Word, Excell, etc.)
Title bar (including the Contextual tab header) goes over the Window (MinMaxClose) Buttons
In XP and Windows10, the window goes behind the windows task bar when it is maximized. The problem manifests itself if we set explicitly the "WindowStyle" property of the RadRibbonWindow. With its "default" value, the problem do not exists. It is also reproduced when AllowTransparency = True (it requires WindowStyle = None), which is needed to set a drop shadow effect.