9

私は C#/WPF の初心者で、Xceed PropertyGrid を使用しようとしています。彼らのサイトで彼らは例を示しています:

 <xctk:PropertyGrid x:Name="_propertyGrid" Width="450" Margin="10"
                                 AutoGenerateProperties="False">
            <!-- Only the following properties will be displayed in the PropertyGrid -->
            <xctk:PropertyGrid.PropertyDefinitions>
                <xctk:PropertyDefinition Name="FirstName" />
                <xctk:PropertyDefinition Name="FavoriteColor" />
                <xctk:PropertyDefinition Name="PetNames" />
            </xctk:PropertyGrid.PropertyDefinitions>
        </xctk:PropertyGrid>

xamlにプラグインしました。PropertyGrid ビューが表示されますが、プロパティ定義が表示されません。基本的な何かが欠けているに違いないと思いますか?コード ビハインドに何か追加する必要がありますか?

4

1 に答える 1

12

ここで解決策を見つけました: http://wpftoolkit.codeplex.com/discussions/353017

また、Xceed の Web サイトからソースをダウンロードすることもできます。これにより、propertygrid を使用したサンプルが表示され、私も役立ちました。秘訣は、PropertyGrid の「SelectedObject」を割り当てることです。

于 2012-04-22T18:20:44.883 に答える