wpftoolkit
wpftoolkit copied to clipboard
Collection Editor property grid not customizable.
While I can customize the behavior and look of my root property grid, the ones displayed in the Collection Editor appear entirely default. What I would like is some way to either simply inherit all settings and event handlers, or a special OnChildPropertyGridCreated event that I can use to customize them directly.
Hi,
Since the CollectionEditor in the PropertyGrid pops a new window (containing another PropertyGrid), a solution to customize all the PropertyGrids could be to set a default style for them in Appl.xaml:
<Application.Resources> <Style TargetType="{x:Type xctk:PropertyGrid}"> <Setter Property="ShowSearchBox" Value="False" /> </Style> </Application.Resources>
Thank you