Hi, is there any way to set all the properties inside a specific category to read only mode based on another property value?
<propgrid:PropertyGrid ...>
<propgrid:PropertyGrid.Resources>
<Style TargetType="{x:Type propgrid:PropertyGridDataAccessorItem}">
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="DataAccessorType" Value="Category" />
<Condition Property="DisplayName" Value="MyCategoryName" />
</MultiTrigger.Conditions>
<Setter Property="propgrid:PropertyGrid.IsReadOnly" Value="{Binding ...}" />
</MultiTrigger>
</Style>
</propgrid:PropertyGrid.Resources>
...
</propgrid:PropertyGrid>
Please log in to a validated account to post comments.