WPF从后面的代码更改属性

时间:2013-02-11 11:20:51

标签: c# wpf

我的属性设置如下:

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

有人可以告诉我是否可以在代码隐藏中将GUICommon:ListBoxSelector.Enabled="True"属性更改为false?

1 个答案:

答案 0 :(得分:0)

ListBoxSelector.Enabled似乎是attached property

您应该可以通过调用

来设置它
ListBoxSelector.SetEnabled(lstDrop, true);