(9)WPF 列表控件
一、ListBox
<ListBox Width="60" Height="40"> <ListBoxItem>a</ListBoxItem> <ListBoxItem>b</ListBoxItem> <ListBoxItem>c</ListBoxItem> </ListBox>
省略Item
<ListBox Width="60" Height="40"> <Label>a</Label> <Label>b</Label> <Label>c</Label> </ListBox>
选中事件
<ListBox Name="listBox" Width="60" Height="80" SelectionChanged="listBox_SelectionChanged" > <Label>a</Label> <Label>b</Label> <Label>c</Label> </ListBox>
二、ComboBox
下拉框