-1

次のように設定されているプロパティがあります。

<ListBox Grid.Row="1" Name="lstDrop" Background="Transparent" GUICommon:ListBoxSelector.Enabled="True"

GUICommon:ListBoxSelector.Enabled="True"コードビハインドでプロパティをfalseに変更できるかどうか教えてもらえますか?

4

1 に答える 1

0

ListBoxSelector.Enabled添付プロパティのようです。

呼び出して設定できるはずです

ListBoxSelector.SetEnabled(lstDrop, true);
于 2013-02-11T11:53:55.003 に答える