我的属性设置如下:
<ListBox Grid.Row="1" Name="lstDrop" Background="Transparent" GUICommon:ListBoxSelector.Enabled="True"
有人可以告诉我是否可以在代码隐藏中将GUICommon:ListBoxSelector.Enabled="True"
属性更改为false?
答案 0 :(得分:0)
ListBoxSelector.Enabled
似乎是attached property。
您应该可以通过调用
来设置它ListBoxSelector.SetEnabled(lstDrop, true);