WPF 控件专题 ListView 样式(斑马线)

ListView 实现子项(ListViewItem)颜色间隔显示的样式。

1、定义一个ListViewItem样式

<Style TargetType="{x:Type ListViewItem}" x:Key="CustomerItemStyle">
	<Setter Property="Background" Value="LightGreen"/>
	<Style.Triggers>
		<Trigger Property="ListBox.AlternationIndex" Value="1">
			<Setter Property="Background" Value="#FF56BCAB"/> 
		</Trigger>
	</Style.Triggers>
</Style>

2、样式引用和修改

<ListView x:Name="student_lv"  AlternationCount="2" ItemContainerStyle="{StaticResource CustomerItemStyle}"  Margin="10,0" Height="300">
	<ListView.View>
		<GridView>
			<GridViewColumn Header="ID" DisplayMemberBinding="{Binding Path=StudentID}" Width="40"/>
			<GridViewColumn Header="Name" DisplayMemberBinding="{Binding Path=StudentName}" Width="80"/>
			<GridViewColumn Header="Age" DisplayMemberBinding="{Binding Path=StudentAge}" Width="60"/>
		</GridView>
	</ListView.View>
</ListView>

3、后台对ItemsSource赋值,添加列表数据内容

public partial class ListViewStyle : UserControl
{
	public ListViewStyle()
	{
		InitializeComponent();

		for (int i = 0; i < 5; i++)
		{
			StudentsList.Add(new Student() { StudentAge = 12 + i, StudentID = i, StudentName = "JoanVan" + i });
		}
		this.student_lv.ItemsSource = StudentsList;

	}

	public List<Student> StudentsList = new List<Student>();

	public class Student
	{
		public int StudentID { get; set; }
		public string StudentName { get; set; }
		public int StudentAge { get; set; }
	}
}

4、效果图

**************************************************************************************************************

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值