New to Telerik UI for WPF? Start a free 30-day trial
How to Remove Empty Space in PropertyGrid
Updated on Mar 17, 2026
Environment
| Product Version | 2019.1.220 |
| Product | RadPropertyGrid for WPF |
Description
How to remove the white space when there is more space than displayed properties.
How to remove the gray area at the bottom of the control.
Solution
To remove the white space, set the VerticalAlignment of RadPropertyGrid to Top.
To remove the gray space, set the DescriptionPanelVisibility property to Collapsed.
XAML
<telerik:RadPropertyGrid DescriptionPanelVisibility="Collapsed" VerticalAlignment="Top" />
