我需要一個propertyGrid,用於我的WPF應用程序。經過大量搜索,我發現this 我添加了組件(exe文件),當我將propertyGrid添加到我的窗體並運行它時,我無法在窗體中看到它。 XAML代碼:背後wpf propertyGrid
<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>
代碼:
private void btn_Click(object sender, RoutedEventArgs e)
{
property.Instance = btn;
}
請幫我找出爲什麼它不可見
是的我的朋友我已經閱讀過它,但它沒有幫助。問題是,當我把控件放在我的窗體中看來控件不可見! 謝謝 – Asha 2009-11-02 13:23:07