wpftoolkit icon indicating copy to clipboard operation
wpftoolkit copied to clipboard

Collection Editor property grid not customizable.

Open billw2012 opened this issue 4 years ago • 1 comments
trafficstars

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.

billw2012 avatar Aug 10 '21 20:08 billw2012

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

XceedBoucherS avatar Aug 11 '21 17:08 XceedBoucherS