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.
Unplanned
Last Updated: 11 Mar 2019 15:39 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: RibbonView
Type: Feature Request
3

Currently, you can navigate through the elements of the ribbon only via the keytips or the arrow keys. Add support for the Tab key as well.

In other words when you enter the keyboard navigation mode, the Tab key should work along with the arrow keys. See Word's ribbon for a reference.

Unplanned
Last Updated: 21 Feb 2019 15:20 by ADMIN
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
Unplanned
Last Updated: 12 Sep 2018 11:13 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

			
Unplanned
Last Updated: 26 Jun 2018 11:28 by ADMIN
Allow the RadRibbonView to ignore the windows menu location settings for the MinimizedPopup
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
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);          
        }
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
3
RibbonWindow icon appears clipped when the DPI  is set larger than 100%. Also, the icon separator is offset.
Unplanned
Last Updated: 07 Mar 2017 12:41 by ADMIN
Unplanned
Last Updated: 07 Mar 2017 11:30 by ADMIN
Add ability to combine the Aero RadRibbonWindow with the RadRibbonView's tabstrip like in MS Office 2010.