wpf listbox横向布局
Posted an123orange
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于wpf listbox横向布局的主要内容,如果未能解决你的问题,请参考以下文章