All the controls missing in WPF. Over 1 million downloads.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
800 B

<xctk:PropertyGrid PropertyNameBinding="{Binding Name}"
SelectedObjectName="Meeting" >
<xctk:PropertyGrid.Properties>
<v:Employee Name="Tom" IsConfirmed="True" Department="Sales"/>
<v:Employee Name="John" IsConfirmed="false" Department="Management"/>
<v:Employee Name="Sean" IsConfirmed="True" Department="Sales"/>
</xctk:PropertyGrid.Properties>
<xctk:PropertyGrid.DefaultEditorDefinition>
<xctk:EditorCheckBoxDefinition Binding="{Binding IsConfirmed}"/>
</xctk:PropertyGrid.DefaultEditorDefinition>
<xctk:PropertyGrid.CategoryGroupDescription>
<PropertyGroupDescription PropertyName="Department" />
</xctk:PropertyGrid.CategoryGroupDescription>
</xctk:PropertyGrid.EditorDefinitions>
</xctk:PropertyGrid>