In my WPF program I have a ListBox
control:
<ListBox x:Name="mailsListBox" SelectionChanged="mailsListBox_SelectionChanged" >
<ListBoxItem Content="..." Background="#FFF3F3F3" Margin="0,0,0,1" />
<ListBoxItem Content="...." Margin="0,0,0,1" Visibility="Hidden"/>
</ListBox>
How can I access Visibility
property of the ListBoxItems
? My code doesn't works:
mailsListBox.Items[1].Visibility = Visible;