New to Telerik UI for WPFStart a free 30-day trial

How to Show RadTileView Scrollbars in RadRibbonView Backstage

Updated on Sep 15, 2025

Environment

Product Version2019.3.1023
ProductRadTileView 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

XAML
    <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

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

See Also