背水一战 Windows 10 (58) - 控件(集合类): ListViewBase - ListView, GridView
作者:webabcd
介绍
背水一战 Windows 10 之 控件(集合类 - ListViewBase)
- ListView
 - GridView
 
示例
1、ListView 的示例
Controls/CollectionControl/ListViewBaseDemo/ListViewDemo.xaml
<Page
x:Class="Windows10.Controls.CollectionControl.ListViewDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.CollectionControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" xmlns:common="using:Windows10.Common"> <Page.Resources>
<Style x:Key="ListViewItemStyle" TargetType="ListViewItem">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListViewItem">
<!--
ListViewItemPresenter - ListViewItem 的 Presenter(继承自 ContentPresenter, 请参见 /Controls/BaseControl/ContentControlDemo/ContentPresenterDemo.xaml)
有好多属性,详见文档
默认样式就是 generic.xaml 中的 <Style TargetType="ListViewItem"> 节点
如果需要自定义的话,那么就在 generic.xaml 中的 <Style TargetType="ListViewItem" x:Key="ListViewItemExpanded"> 节点的基础上修改
如果还不能满足要求的话就通过继承 ContentPresenter 来实现自定义的 ContentPresenter
-->
<!--
此处的 TemplatedParent 是 ListViewItem
这里借用 Tag 保存一下 ListViewItem 的 IsSelected,之后的数据模板可以绑定 ListViewItemPresenter 的 Tag,从而实现数据模板间接绑定 ListViewItem 的 IsSelected
此处通过 Tag 属性做中转,如果 Tag 有别的用处的话,那么就自己写个附加属性做中转吧
-->
<ListViewItemPresenter Margin="10" SelectedBackground="Red" SelectedPointerOverBackground="Red"
Tag="{Binding IsSelected, RelativeSource={RelativeSource Mode=TemplatedParent}, Mode=TwoWay}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<common:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
</Page.Resources> <Grid Background="Transparent"> <!--
ListView - ListView 控件(继承自 ListViewBase, 请参见 /Controls/CollectionControl/ListViewBaseDemo/)
ListView 的默认布局控件是 ItemsStackPanel,请参见 /Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsStackPanelDemo.xaml
ListView 的 ItemContainer 是 ListViewItem
--> <ListView x:Name="listView" Margin="10 0 10 10"
ItemContainerStyle="{StaticResource ListViewItemStyle}"
SelectionMode="Multiple"
ItemsSource="{x:Bind Employees}">
<ListView.ItemTemplate>
<DataTemplate x:DataType="common:Employee">
<StackPanel Height="100" Width="100" Background="Blue">
<TextBlock x:Name="lblName" Text="{x:Bind Name}" />
<TextBlock x:Name="lblIsMale" Text="{x:Bind IsMale}" />
<!--
这里有个需求:当 ListViewItem 的 IsSelected 为 true 时显示,反之则不显示
此处的 TemplatedParent 是 ListViewItemPresenter,而不是 ListViewItem,所以需要 ListViewItemPresenter 中转一下(ListViewItemPresenter 的 TemplatedParent 是 ListViewItem)
此处通过 Tag 属性做中转,如果 Tag 有别的用处的话,那么就自己写个附加属性做中转吧 如果以后 uwp 支持了 FindAncestor 的话,就可以不用中转了,直接这样写就行了
{Binding Path=IsSelected, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ListViewItem}}}
-->
<TextBlock x:Name="lblAge" Text="{x:Bind Age}"
Visibility="{Binding Path=Tag, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource BooleanToVisibilityConverter}}" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView> <!--
通过 xaml 方式为 ListView 添加 item
<ListView>
<ListViewItem>
<TextBlock Text="item1"/>
</ListViewItem>
<ListViewItem>
<TextBlock Text="item2"/>
</ListViewItem>
<ListViewItem>
<TextBlock Text="item3"/>
</ListViewItem>
</ListView>
--> </Grid>
</Page>
Controls/CollectionControl/ListViewBaseDemo/ListViewDemo.xaml.cs
/*
* ListView - ListView 控件(继承自 ListViewBase, 请参见 /Controls/CollectionControl/ListViewBaseDemo/)
*/ using System.Collections.ObjectModel;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows10.Common; namespace Windows10.Controls.CollectionControl
{
public sealed partial class ListViewDemo : Page
{
public ObservableCollection<Employee> Employees { get; set; } = new ObservableCollection<Employee>(TestData.GetEmployees()); public ListViewDemo()
{
this.InitializeComponent();
}
}
}
2、GridView 的示例
Controls/CollectionControl/ListViewBaseDemo/GridViewDemo.xaml
<Page
x:Class="Windows10.Controls.CollectionControl.GridViewDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.CollectionControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" xmlns:common="using:Windows10.Common"> <Page.Resources>
<Style x:Key="GridViewItemStyle" TargetType="GridViewItem">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="GridViewItem">
<!--
ListViewItemPresenter - GridViewItem 的 Presenter(继承自 ContentPresenter, 请参见 /Controls/BaseControl/ContentControlDemo/ContentPresenterDemo.xaml)
默认样式就是 generic.xaml 中的 <Style TargetType="GridViewItem"> 节点
如果需要自定义的话,那么就在 generic.xaml 中的 <Style TargetType="GridViewItem" x:Key="GridViewItemExpanded"> 节点的基础上修改
如果还不能满足要求的话就通过继承 ContentPresenter 来实现自定义的 ContentPresenter
-->
<ListViewItemPresenter Margin="10" SelectionCheckMarkVisualEnabled="True" SelectedBackground="Red" CheckBrush="Yellow" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Page.Resources> <Grid Background="Transparent"> <!--
GridView - GridView 控件(继承自 ListViewBase, 请参见 /Controls/CollectionControl/ListViewBaseDemo/)
GridView 的默认布局控件是 ItemsWrapGrid,请参见 /Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsWrapGridDemo.xaml
GridView 的 ItemContainer 是 GridViewItem
--> <GridView x:Name="gridView" Margin="10 0 10 10"
ItemContainerStyle="{StaticResource GridViewItemStyle}"
SelectionMode="Multiple"
ItemsSource="{x:Bind Employees}">
<GridView.ItemTemplate>
<DataTemplate x:DataType="common:Employee">
<StackPanel Height="100" Width="100" Background="Blue">
<TextBlock x:Name="lblName" Text="{x:Bind Name}" Foreground="Yellow" />
<TextBlock x:Name="lblAge" Text="{x:Bind Age}" Foreground="Aqua" />
<TextBlock x:Name="lblIsMale" Text="{x:Bind IsMale}" Foreground="Gray" />
</StackPanel>
</DataTemplate>
</GridView.ItemTemplate>
</GridView> <!--
通过 xaml 方式为 GridView 添加 item
<GridView>
<GridViewItem>
<TextBlock Text="item1"/>
</GridViewItem>
<GridViewItem>
<TextBlock Text="item2"/>
</GridViewItem>
<GridViewItem>
<TextBlock Text="item3"/>
</GridViewItem>
</GridView>
--> </Grid>
</Page>
Controls/CollectionControl/ListViewBaseDemo/GridViewDemo.xaml.cs
/*
* GridView - GridView 控件(继承自 ListViewBase, 请参见 /Controls/CollectionControl/ListViewBaseDemo/)
*/ using System.Collections.ObjectModel;
using Windows.UI.Xaml.Controls;
using Windows10.Common; namespace Windows10.Controls.CollectionControl
{
public sealed partial class GridViewDemo : Page
{
public ObservableCollection<Employee> Employees { get; set; } = new ObservableCollection<Employee>(TestData.GetEmployees()); public GridViewDemo()
{
this.InitializeComponent();
}
}
}
OK
[源码下载]
背水一战 Windows 10 (58) - 控件(集合类): ListViewBase - ListView, GridView的更多相关文章
- 背水一战 Windows 10 (56) - 控件(集合类): ListViewBase - 基础知识, 拖动项
		
[源码下载] 背水一战 Windows 10 (56) - 控件(集合类): ListViewBase - 基础知识, 拖动项 作者:webabcd 介绍背水一战 Windows 10 之 控件(集合 ...
 - 背水一战 Windows 10 (57) - 控件(集合类): ListViewBase - 增量加载, 分步绘制
		
[源码下载] 背水一战 Windows 10 (57) - 控件(集合类): ListViewBase - 增量加载, 分步绘制 作者:webabcd 介绍背水一战 Windows 10 之 控件(集 ...
 - 背水一战 Windows 10 (55) - 控件(集合类): SemanticZoom, ISemanticZoomInformation
		
[源码下载] 背水一战 Windows 10 (55) - 控件(集合类): SemanticZoom, ISemanticZoomInformation 作者:webabcd 介绍背水一战 Wind ...
 - 背水一战 Windows 10 (48) - 控件(集合类): FlipView
		
[源码下载] 背水一战 Windows 10 (48) - 控件(集合类): FlipView 作者:webabcd 介绍背水一战 Windows 10 之 控件(集合类) FlipView 示例Fl ...
 - 背水一战 Windows 10 (49) - 控件(集合类): Pivot, Hub
		
[源码下载] 背水一战 Windows 10 (49) - 控件(集合类): Pivot, Hub 作者:webabcd 介绍背水一战 Windows 10 之 控件(集合类) Pivot Hub 示 ...
 - 背水一战 Windows 10 (50) - 控件(集合类): ItemsControl - 基础知识, 数据绑定, ItemsPresenter, GridViewItemPresenter, ListViewItemPresenter
		
[源码下载] 背水一战 Windows 10 (50) - 控件(集合类): ItemsControl - 基础知识, 数据绑定, ItemsPresenter, GridViewItemPresen ...
 - 背水一战 Windows 10 (51) - 控件(集合类): ItemsControl - 项模板选择器, 数据分组
		
[源码下载] 背水一战 Windows 10 (51) - 控件(集合类): ItemsControl - 项模板选择器, 数据分组 作者:webabcd 介绍背水一战 Windows 10 之 控件 ...
 - 背水一战 Windows 10 (52) - 控件(集合类): ItemsControl - 自定义 ItemsControl, 自定义 ContentPresenter
		
[源码下载] 背水一战 Windows 10 (52) - 控件(集合类): ItemsControl - 自定义 ItemsControl, 自定义 ContentPresenter 作者:weba ...
 - 背水一战 Windows 10 (53) - 控件(集合类): ItemsControl 的布局控件 - ItemsStackPanel, ItemsWrapGrid
		
[源码下载] 背水一战 Windows 10 (53) - 控件(集合类): ItemsControl 的布局控件 - ItemsStackPanel, ItemsWrapGrid 作者:webabc ...
 
随机推荐
- 利用PHP脚本辅助MySQL数据库管理4-两个库表结构差异比较
			
<?php define('DATABASE1', 'coffeetest'); $dbi1 = new DbMysql; $dbi1->dbh = 'mysql://root:mysql ...
 - H.264, MPEG4之间的关系
			
百度百科搜索 H.264 H.264是国际标准化组织(ISO)和国际电信联盟(ITU)共同提出的继MPEG4之后的新一代数字视频压缩格式.H.264是ITU-T以H.26x系列为名称命名的视频编解码技 ...
 - IT资产管理详解
 - 2019.01.23 ural1519 Formula 1(轮廓线dp)
			
传送门 轮廓线dpdpdp模板题. 题意简述:给一个放有障碍的网格图,问有多少种方法能使所有非障碍格子都在同一条哈密顿回路上面. 考虑用括号序列的写法来状压这个轮廓线. 用000表示没有插头,111表 ...
 - 2018.11.01 NOIP训练 递增数列(迭代加深)
			
传送门 直接迭代加深搜索. 发现每次最多增加一倍,最少增加一,于是果断上下界剪枝. 代码
 - App测试基本流程详解(汇总整理)
			
前言 看过许多大神对APP测试的理解,博主总结了一下我们平时测试APP应该注意的一些测试点并结合大神的理解,总结出这篇文章. 一.测试周期 测试周期一般为两周,根据项目情况以及版本质量可适当缩短或延长 ...
 - Source Routing
			
Source routing Followed by book_Principles and Practices of Interconnection Networks, p204. With sou ...
 - ip route 解释
			
[root@localhost ~]# ip route default via 172.16.0.1 dev ens192 proto static metric 100 172.16.0.0/16 ...
 - centos7.2下安装python3.6.2
			
centos7.2默认已经安装了python2.7.5,因此要安装python3.6的话,得从python官网上下载相应版本的安装包 查看python2.7 1.下载:wget https://www ...
 - Tensorflow RNN_LSTM实例
			
RNN的一种类型模型被称为长短期记忆网络(LSTM).我觉得这是一个有趣的名字.它听起来也意味着:短期模式长期不会被遗忘. LSTM的精确实现细节不在本文的范围之内.相信我,如果只学习LSTM模型会分 ...