New to Telerik UI for WPF? Download free 30-day trial

How to Show RadTileView Scrollbars in RadRibbonView Backstage

Environment

Product Version 2019.3.1023
Product RadTileView for WPF

Description

How to display the scrollbars of a RadTileView in the backstage of a RadRibbonView.

Solution

To achieve this requirement, you first need to disable the ScrollViewer's scrollbars of the RadRibbonBackstage.

Example 1: Disabling the scrollbars of the RadRibbonBackstage

<telerik:RadRibbonBackstage ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.VerticalScrollBarVisibility="Disabled"> 
Then you need to enable the scrolling in RadTileView by setting its ColumnsCount, RowHeight and ColumnWidth properties as explained in this article.

Example 2: Enabling the scrollbars of the RadTileView

<telerik:RadTileView ColumnsCount="3" RowHeight="200" ColumnWidth="150"> 

See Also

In this article