Completed
Last Updated: 24 Aug 2020 10:56 by ADMIN
Release LIB 2020.2.824
 InvalidOperationException is thrown when double closing one and the same RibbonWindow
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.
Completed
Last Updated: 11 Mar 2024 07:36 by ADMIN
Release 2024.1.312
Unpinned RibbonView content popup is not rendered correctly (has invalid width) when the application main window is of type RadRibbonWindow and in Maximized Mode.
Unplanned
Last Updated: 04 Jan 2017 07:27 by ADMIN
A black border is displayed around the window when SizeToContent is set on Windows7  with disabled aero.
Completed
Last Updated: 22 Jan 2015 16:47 by Bill
Available in LIB version: 2014.3.1319
Completed
Last Updated: 26 Feb 2016 16:32 by ADMIN
When the RibbonView is hosted in RibbonWindow and IsWindowsThemeEnabled is set to true, if the themes are switched at runtime (from Office2013 or VisualStudio2013 to another theme), the RibbonTabs and Quick Access Toolbar are hidden.
Completed
Last Updated: 06 Oct 2014 10:49 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 3
Category: RibbonView
Type: Feature Request
1
The RadRibbonBackstage is closed when EscapeKey is pressed and the KeyTipService.IsKeyTipsEnabled is set to "True" and the Backstage closing logic on escape is dissabled

Fixed in Q3 2014
Completed
Last Updated: 11 Jul 2014 14:08 by ADMIN
When we have a RibbonWindow with the Office2013 theme applied and palette set to (for example) LightGray the background of the window is not changed.
Completed
Last Updated: 03 Dec 2014 13:19 by Tom
ADMIN
Created by: Pavel R. Pavlov
Comments: 2
Category: RibbonView
Type: Bug Report
1
CUIT cannot access content (as groups and buttons) hosted by every tab, except the first one.

Available in Q3 2014 SP
Unplanned
Last Updated: 03 Jan 2017 21:20 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: RibbonView
Type: Bug Report
1
When the RadRibbonView is hosted in RadRibbonWindow under Windows7, the top part of the default inner border of the RadRibbonWindow is cut.
Unplanned
Last Updated: 03 Jan 2017 21:20 by ADMIN
RadRibbonSplitButton text is too close to the border of the button due to lacking padding in the TextBlock holding text. Also the Text is a few pixels off vertically compared to the other ribbon buttons.
Completed
Last Updated: 24 Jun 2014 14:11 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: RibbonView
Type: Feature Request
1
RibbonWindow leaves empty spaces between the border and the content when used on Windows8 machine and the project targets .NET 4.0
Completed
Last Updated: 06 Feb 2015 16:44 by arto
The app starts with the backstage open (IsBackstageOpen="true" for RadRibbonView). After closing the backstage RadRibbonView MinimizeButtons, both in QuickAccessToolbar and on the RadRibbonView, stay disabled. Expectation is those should get enabled after the backstage is closed.   


Available in LIB version: 2014.3.1409
Completed
Last Updated: 26 Jun 2014 16:07 by Markus
If a RibbonView is used in a WPF, where the Window SizeToContent property is set to WidthAndHeight, the Window takes too much space.
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: 03 Jan 2017 20:55 by ADMIN
A  "Cannot access Freezable 'System.Windows.Media.LinearGradientBrush' across threads because it cannot be frozen." exception is thrown when you try to open the window for second time using ATEasy software.
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.

Completed
Last Updated: 28 Aug 2023 07:25 by ADMIN
Release LIB 2023.2.904 (4 Sep 2023)

Setting the LayoutMode to Simplified doesn't do anything in the RadRibbonTabs that are assigned to a RadRibbonContextualGroup.

To work this around, extract the "ContextualTabsTemplate" ControlTemplate and the following elements in the "RibbonScrollViewer".

 

<telerikRibbonViewPrimitives:RibbonScrollViewer x:Name="TabItemsScrollViewer">
	<Grid>
		<ItemsPresenter x:Name="PART_DefaultItemsPresenter" HorizontalAlignment="Left" />
		<ItemsControl x:Name="PART_SimplifiedItemsControl" Visibility="Collapsed" 
				  ItemsSource="{Binding SimplifiedItems, RelativeSource={RelativeSource TemplatedParent}}">
			<ItemsControl.ItemsPanel>
				<ItemsPanelTemplate>
					<telerikRibbonViewPrimitives:RibbonGroupsPanel />
				</ItemsPanelTemplate>
			</ItemsControl.ItemsPanel>
		</ItemsControl>
	</Grid>
</telerikRibbonViewPrimitives:RibbonScrollViewer>

 

Then define the following DataTrigger in the ControlTemplate.Triggers collection:

 

<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=telerikRibbonView:RadRibbonView}, Path=LayoutMode}" Value="Simplified">
	<Setter TargetName="PART_SimplifiedItemsControl" Property="Visibility" Value="Visible"/>
	<Setter TargetName="PART_DefaultItemsPresenter" Property="Visibility" Value="Collapsed"/>
</DataTrigger>

 

Then, assign the custom ControlTemplate via the Template property of RadRibbonTab.

 

<telerik:RadRibbonTab Template="{StaticResource CustomContextualRibbonTabTemplate}" />

 

Completed
Last Updated: 17 Jul 2015 13:42 by ADMIN
RibbonView: А System.InvalidOperationException is thrown when  RadDocumentPane is selected and the ribbon is minimized and its popup is open.

Available in LIB Version: 2015.2.720.