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横向布局的主要内容,如果未能解决你的问题,请参考以下文章

WPF ListBox 中使用网格布局

WPF效果第一百八十九篇之又玩Expander+ListBox

WPF 自定义滑动ScrollViewer

将片段用于横向视图和 ViewPager

WPF如何更改xaml代码里ListBox的数据绑定

从代码隐藏(C#、WPF)添加时,用户控件无法在 ListBox 中正确显示