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

Disable the Horizontal Scrollbar of RadPropertyGrid

Updated on Sep 15, 2025

Environment

Product Version2022.2 621
ProductRadPropertyGrid for WPF

Description

Setting the ScrollViewer.HorizontalScrollBarVisibility directly onto the RadPropertyGrid control instance does not hide the horizontal scrollbar.

Solution

  1. Create a new Style with TargetType="ScrollViewer" in the Resources collection of the RadPropertyGrid element instance.

  2. Set the HorizontalScrollBarVisibility property to Disabled via a Setter.

Disable horizontal scrollbar

XAML
	<telerik:RadPropertyGrid>
	    <telerik:RadPropertyGrid.Resources>
	        <Style TargetType="ScrollViewer">
	            <Setter Property="HorizontalScrollBarVisibility" Value="Disabled"/>
	        </Style>
	    </telerik:RadPropertyGrid.Resources>
	</telerik:RadPropertyGrid>
In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support