I am starting in C # / WPF and trying to use the Xceed PropertyGrid. An example is shown on their website:
<xctk:PropertyGrid x:Name="_propertyGrid" Width="450" Margin="10" AutoGenerateProperties="False"> <xctk:PropertyGrid.PropertyDefinitions> <xctk:PropertyDefinition Name="FirstName" /> <xctk:PropertyDefinition Name="FavoriteColor" /> <xctk:PropertyDefinition Name="PetNames" /> </xctk:PropertyGrid.PropertyDefinitions> </xctk:PropertyGrid>
What I connected to my xaml. I see a PropertyGrid View, but I do not see any property definitions. I feel like I'm missing something basic? Should I add anything to the code?
wpf propertygrid xceed
lost_bits1110
source share