Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个属性设置如下:
<ListBox Grid.Row="1" Name="lstDrop" Background="Transparent" GUICommon:ListBoxSelector.Enabled="True"
有人可以告诉我是否可以GUICommon:ListBoxSelector.Enabled="True"在代码隐藏中将属性更改为 false?
GUICommon:ListBoxSelector.Enabled="True"
ListBoxSelector.Enabled似乎是附属物。
ListBoxSelector.Enabled
您应该可以通过调用来设置它
ListBoxSelector.SetEnabled(lstDrop, true);