wpf listview 中的checkbox如何设置为居中?
header默认里面是居中的,但是cell里面默认是left,我想让cell里面也居中。设置了HorizontalAlignment="Center",却没有效果!该怎么弄呢。 --------------------编程问答-------------------- 只要设置大小就可以了 <CheckBox Width="13" Height="13" Click="selectNull" IsChecked="{Binding IsSelected}" VerticalAlignment="Center" HorizontalAlignment="Center"></CheckBox>
一定要13 不然 不居中
补充:.NET技术 , C#