Reputation: 353
I need a listbox to store 'Visible' or 'Collapsed' enum value in its 'Tag' property, something like:
<ListBox Tag="{x: ... Visible}"/>
How can I make that?
Upvotes: 1
Views: 95
Reputation: 3764
<ListBox xmlns:wpf="clr-namespace:System.Windows;assembly=PresentationCore"
Tag="{x:Static wpf:Visibility.Visible}"/>
Upvotes: 2