wpf listbox横向布局

<ListBox Grid.Row="1" x:Name="lstStaffs">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox Margin="5" Content="{Binding StaffName}" IsChecked="{Binding IsSelect}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

 

posted on 2019-05-29 10:20  一个橙子ycz  阅读(1013)  评论(0编辑  收藏  举报

导航