Hi all,
quick question, is there a way to force all properties to be expanded when opening the property grid (or changing the selected objects)?
Cheers
Rick
Hi all,
quick question, is there a way to force all properties to be expanded when opening the property grid (or changing the selected objects)?
Cheers
Rick
Hi Rick,
You can use an implicit Style to expand them, but if you have any circular references or infinite expansion then you would receive an exception (eventually):
<Style TargetType="{x:Type propgrid:PropertyGridDataAccessorItem}">
<Setter Property="IsExpanded" Value="True"/>
</Style>
Please log in to a validated account to post comments.