Unplanned
Last Updated: 22 May 2024 15:52 by Stenly
Add support to show the system menu on the RadRibbonWindow element when IsWindowsThemeEnabled=False and the Shift + right mouse button is clicked on the icon on the taskbar.
Unplanned
Last Updated: 19 Feb 2024 11:37 by Hannu
The dropdown remains opened when switching the window with Alt+Tab.
Unplanned
Last Updated: 30 Jan 2024 08:28 by Marek
Created by: Stenly
Comments: 1
Category: RibbonView
Type: Feature Request
1
Currently, the RadRibbonView control does not provide the functionality to merge different instances into one. We could add such an option to the RadRibbonView control.
Unplanned
Last Updated: 25 Jan 2024 10:27 by Stenly

Currently, the RadRibbonGallery control provides the PopupViewportHeight property that sets the Height property of the ScrollViewer, which hosts the RadGalleryItem instances when it is expanded.

We could introduce a property, for example, PopupViewportMaxHeight that will set the MaxHeight property of the ScrollViewer. This way, if the height gets higher than the value specified for this property, a vertical scrollbar should appear.

Unplanned
Last Updated: 01 Dec 2023 10:34 by Martin Ivanov

Currently, the RadRibbonTab GetChildrenCore method doesn't create automation peers for the element in the ContentPresenter for the TabStripAdditionalContent.

At this point, you can enable this by creating a custom AutomationPeer that derives from RadGridViewAutomationPeer and override its GetChildrenCore() method. This way you can manually create the peer for the AdditionalTabStripContent. This idea is shown in the attached project.

Unplanned
Last Updated: 15 Sep 2023 08:41 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: RibbonView
Type: Feature Request
0
Add an option to assign a Style for the ScreenTip control. The option should be available per RadRibbonView and also per each separate element. It could follow the current ScreenTip settings concept where attached properties are used.

For example:

<telerik:RadRibbonView telerik:ScreenTip.Style="{StaticResource MyGlobalScreenTipStyle}" />

or:

<telerik:RadRibbonButton telerik:ScreenTip.Style="{StaticResource MyButtonScreenTipStyle}" />
Unplanned
Last Updated: 14 Sep 2023 14:58 by Martin Ivanov

The ScreenTip no longer is displayed on mouse over of the owner element. This reproduces only if the element is hovered before the ScreenTips of the previously hovered element is closed. In other words this happens if the two elements that contain ScreenTips are overlapping are very close to one another and there is no space that allows closing the tooltip while moving the mouse.

To work this around, subscribe to the Opened event of the ScreenTip control and set its Visibility to Visible if the element was previously Collapsed.

<Window.Resources>
	<Style TargetType="telerik:ScreenTip">
		<EventSetter Event="Opened" Handler="ScreenTip_Opened" />
	</Style>
</Window.Resources>

 

private void ScreenTip_Opened(object sender, RoutedEventArgs e)
{
	var screenTip = (ScreenTip)sender;
	if (screenTip.Visibility == Visibility.Collapsed)
	{
		screenTip.Visibility = Visibility.Visible;
	}
}

Unplanned
Last Updated: 15 Aug 2023 11:34 by Helen
RadRibbonDropDownButton with Table Picker freezes UI after picking a table.
Unplanned
Last Updated: 09 Aug 2023 13:41 by Ivan

Allow showing the Quick Access Toolbar (QAT) items in the customization drop down menu (the quick access menu). This is the menu that shows the "Minimize the Ribbon" and the "Show below the Ribbon" options. 

The new feature should allow to display all items from the QAT in the drop down. Clicking an item from the drop down should show or hide it in the QAT.

The attached project shows one way to get this behavior with custom code.

Unplanned
Last Updated: 04 May 2023 21:17 by Martin Ivanov
If you place the RibbonView between two monitors and select a tab in order to display its minimized content, the popup with the content should spread on both monitors. This works in the common case, but when the dpiAwareness in the app.manifest file is set to  PerMonitor and dpiAware is set to True, the popup is offset outside of the RibbonView and it is displayed only on one of the screens.
Unplanned
Last Updated: 02 May 2023 15:25 by Martin Ivanov

Currently, the RadRibbonTab GetChildrenCore method creates automation peers only for the elements in its Items collection. There is no peer created for the element in the Header. Add support for this. 

This missing peer, leads to that the TextBlock in the Header of the ribbon tabs is not highlighted when using a UI inspecting tool (like Snoop and its Automation option or UISpy.exe).


You can find a solution that shows how to achieve this in the attached project.
Unplanned
Last Updated: 11 Apr 2023 17:44 by ADMIN
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.
Unplanned
Last Updated: 09 Mar 2023 17:15 by ADMIN
Created by: Ralf
Comments: 2
Category: RibbonView
Type: Feature Request
5
would be very helpful especially for users who are new to Telerik and/or WPF
Unplanned
Last Updated: 14 Dec 2022 10:55 by Martin Ivanov
Currently, the titlebar text that appears when you set the ApplicationName is centered in the titlebar. Add option to align the WindowTitle element left or right in the titlebar.
Unplanned
Last Updated: 30 Apr 2021 14:51 by ADMIN
This feature is similar to the IconTemplate of RadMenuItem. There should be two templates - one for SmallImage and one for LargeImage.
Unplanned
Last Updated: 06 Aug 2020 08:56 by ADMIN
A flickering of the popup can be observed when the RadRibbonView is minimized and the selected tab is changed quickly. 
Unplanned
Last Updated: 15 Jun 2020 14:07 by ADMIN
If you open the dropdown of the RadRibbonComboBox using the keytips support and then navigate to an item, and select it using the arrow keys, the selection is wrong. It selects the next item instead of the one highlighted by the keyboard navigation. 
Unplanned
Last Updated: 10 Jun 2020 13:31 by ADMIN
When the "Automatically Hide the taskbar in desktop mode" windows setting is enabled and the RadRibbonWindow is maximized, it exceeds the screen area. 
Unplanned
Last Updated: 06 Apr 2020 19:01 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 2
Category: RibbonView
Type: Feature Request
2
Implement keyboard navigation for the items in the ApplicationMenu - through arrow keys for example.
Unplanned
Last Updated: 03 Jan 2020 09:54 by ADMIN

1. When the RibbonWindow is maximized the draggable area ends below the WindowTitle

2. In Normal state - the draggable area could be expanded in Material, Fluent and Crystal themes


A possible workaround is to change the WindowCaptionHeight property:

 var parameters = SystemParameters2.Current;
 parameters.GetType().GetProperty("WindowCaptionHeight").SetValue(parameters, SystemParameters2.Current.WindowCaptionHeight + 26, null);


1 2 3 4