[UWP控件备忘录]ListView

ListView生成的VisualTree

ListView
    Border
        ScrollViewer
            Border
                Grid
                    ScrollContentPresenter
                        ItemsPresenter
                            ContentControl
                            ItemsStackPanel
                                ListViewItem
                                    ListViewItemPresenter
                                        -这里是Template内的内容
                                -其它列表项
                            ContentControl
                    VerticalScrollBar
                    HorizontalScrollBar
                    ScrollBarSeperator




代码获取ListViewItem内部控件

ListViewItem.Content返回的是ItemsSource里的项目, 而不是它下一层的ListViewItemPresenter控件
在这里用到

VisualTreeHelper.GetChild(DependencyObject reference, int childIndex);

用于获取reference下的第childIndex个控件

ListView.ContainerFromItem(object item);
ListView.ContainerFromIndex(int index);

以上两个方法用于获取ListView内部的ListViewItem
几个方法相结合跟据ListView的实际VisualTree就可以获取到相应的显示的控件



列表项横向填充

  • ListView的子项目默认是水平左对齐的,当Template内的控件需要右对齐时通常只对齐到ListViewItem实际宽度的右边,而不是ListView的右边
  • 当Template使用了Grid并且按照比例设置了列宽时,我们通常希望每个Item的每个列宽度都是相同的
<ListView>
    <ListView.ItemContainerStyle>
        <Style TargetType="ListViewItem">
            <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        </Style>
    </ListView.ItemContainerStyle>
</ListView>

HorizontalContentAlignment

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值