I need a PropertyGrid for my WPF application. After lots of searches I have found this.
I have added the assembly (exe file) when I add the PropertyGrid to my form and I run it I can't see it in the form.
XAML code :
<Window x:Class="propertyGridTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wpg="clr-namespace:Deepforest.WPF.Controls;assembly=WPGDemo"
Title="Window1" Height="300" Width="300">
<Grid>
<Button x:Name="btn" Click="btn_Click" Height="35.5" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="55"></Button>
<wpg:PropertyGrid x:Name="property" Width="100" Height="100"> </wpg:PropertyGrid>
</Grid>
</Window>
code behind :
private void btn_Click(object sender, RoutedEventArgs e)
{
property.Instance = btn;
}
please help me to find out why it's not visible