我需要一个列表框,在其“Tag”属性中存储“Visible”或“Collapsed”枚举值,如:
<ListBox Tag="{x: ... Visible}"/>
我该怎么做?
答案 0 :(得分:2)
<ListBox xmlns:wpf="clr-namespace:System.Windows;assembly=PresentationCore"
Tag="{x:Static wpf:Visibility.Visible}"/>