WPF ListBox 中使用网格布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF ListBox 中使用网格布局相关的知识,希望对你有一定的参考价值。
<Grid>
<ListBox Height="181" HorizontalAlignment="Left" Margin="12,12,0,0" Name="listBox1" VerticalAlignment="Top" Width="687" UseLayoutRounding="False" Panel.ZIndex="2" >
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
此方法同样适用与ListView中
本文出自 “11017815” 博客,请务必保留此出处http://11027815.blog.51cto.com/11017815/1860678
以上是关于WPF ListBox 中使用网格布局的主要内容,如果未能解决你的问题,请参考以下文章