


This article mainly introduces the WPF collection control to implement the separator ItemsControl Separator in detail. It has a certain reference value. Interested friends can refer to it.
is often needed in WPF collection controls. Insert a separator style between each collection item, but WPF's ItemsControl does not have direct implementation of related functions, so we can only consider curves to save the country. After research, I have probably thought of the following two implementation methods.
First write the data template of ItemsControl, as follows:
##
<ItemsControl ItemsSource="{Binding Source}" BorderThickness="1" BorderBrush="Blue" VerticalAlignment="Stretch"> <ItemsControl.ItemTemplate> <DataTemplate> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Border Name="Bd" Grid.Row="0" Height="1" Background="Red" /> <TextBlock Grid.Row="1" Text="{Binding}" /> </Grid> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl>The Border named Bd It is the separator. At this time, the separator can be seen in the header of each item. Now our goal is to hide the separator of the first item. This achieves the purpose of having separators between items.
The firstimplementation method is the simplest, using the collection item to forward bind PreviousData. This is one of the four binding methods, and it is probably the one that is used the least. , but it comes in handy at this time. The code is as follows:
<DataTemplate.Triggers> <DataTrigger Binding="{Binding RelativeSource={RelativeSource PreviousData}}" Value="{x:Null}"> <Setter TargetName="Bd" Property="Visibility" Value="Collapsed" /> </DataTrigger> </DataTemplate.Triggers>When the previous item of a certain item is empty, the separator is hidden. It can be done with a simple line of code. However, one disadvantage of this implementation is that if you use the Insert method to add data to the front of the bound data source, more than one item without a separator will appear. If you add data to the end of the queue or to the middle of the queue, there will be no This problem occurs.
The second implementation method is to use ItemsControl#AlternationCount and AlternationIndex attribute to mark the index number for the collection item, and then hide the separator of the item with index number 0. The code is as follows:
Copy code The code is as follows :
First bind AlternationCount to the Count property of the data source on
ItemsControl, and then the AlternationIndex property of ItemsControl becomes the index number of the collection data source. , just write the logic in the trigger:
<Border Name="Bd" Grid.Row="0" Height="1" Background="Red"> <Border.Style> <Style TargetType="{x:Type Border}"> <Style.Triggers> <DataTrigger Binding="{Binding Path=(ItemsControl.AlternationIndex), RelativeSource={RelativeSource AncestorType={x:Type ContentPresenter}}}" Value="0"> <Setter Property="Visibility" Value="Collapsed" /> </DataTrigger> </Style.Triggers> </Style> </Border.Style> </Border>The trigger determines that when the index number is 0, it will be hidden
Border, the amount of code in this method is not large, and the advantage is that it can definitely realize this function, whether inserting to the beginning or the end of the queue, but AlternationCount and The original meaning of the AlternationIndex attribute is to implement functions such as interlaced color changing. This function is occupied at this time, so if your collection wants to implement both separator and alternate line style functions, you may need to add an additional converter. , but the content of the converter is also very simple. You can restore the previous function by finding the remainder.
The above is the detailed content of WPF collection control implements separator (ItemsControl Separator). For more information, please follow other related articles on the PHP Chinese website!

您可以在 iOS 16 上选择哪些数字格式随着对 iOS 16.4 (beta 2) 的更改,您可以为您的 iPhone 选择三种不同的数字格式。这些格式使用空格、逗号和句点作为分隔数字中千位的符号或作为小数点。小数点是用于将值的整数部分与其小数部分分开的字符,通常由句点 (.) 或逗号 (,) 分配。千位分隔符用于将多位数的数字分成三组,通常由句点 (.)、逗号 (,) 或空格 ( ) 指定。 在最新版本的 iOS 上,您将能够应用以下任何一种数字格式作为您 iPhone 的首选选项:1,23

WPF是微软开发的一种基于.NET Framework的桌面应用程序开发框架。它提供了丰富的用户界面元素、数据绑定和动画等功能,使得开发者可以轻松地创建高质量的桌面应用程序。

在C编程语言中,通常情况下,特殊符号具有特殊的含义,不能用于其他目的。在C编程中使用的一些特殊符号如下−[](){},;*=#让我们了解它们的定义,如下所示:方括号[]-方括号的开闭用于数组元素引用,表示单个和多维下标。圆括号()-这些特殊符号用于函数调用和函数参数。花括号{}-花括号的开闭表示包含多个可执行语句的代码块的开始和结束。逗号(,)-用于分隔多个语句,比如函数调用中的参数分隔。冒号(:)-这是一个运算符,实际上调用了一个叫做初始化列表的东西。分号(;)-它被称为语

WPF(Windows Presentation Foundation)是微软推出的基于Windows的用户界面框架,属于.NET Framework 3.0的一部分。它提供了统一的编程模型、语言和框架,真正做到了分离界面设计人员与开发人员的工作。同时它提供了全新的多媒体交互用户图形界面。您可以使用任何一种.Net编程语言(C#,VB.NET等)进行开发。

在MacOSVentura中更改小数分隔符和数字格式转到Apple菜单并选择“系统设置”转到“一般”选择“语言和地区”找到“数字格式”并下拉旁边的子菜单以访问各种数字格式选项,允许您将小数点分隔符更改为逗号、点或空格选择您想要的数字格式,该设置将立即贯穿整个MacOS。MacOSVentura系统设置中缺少“数字格式”?一些使用不同区域设置的Mac用户发现他们的MacOSVentura系统设置中缺少数字格式部分,这是一个严重的疏忽或一个可爱的错误。无论如何,如果您发现自己缺少数字格

php服务器脚本分隔符有“<?php”、“<?”、“?>”、“<!--”和“//-->”等。详细介绍:1、“<?php”,这是PHP中最常见的开始标记,用于标识PHP代码块的开始,在这个标记之后,可以写入任意的PHP代码;2、“<?”,短标记是PHP中的另一种开始标记,它比较简洁,并且在PHP配置文件中可以通过设置修改,由于短标记可能会与其他语言的标记冲突,因此不推荐使用等等。

如何使用String类的split()方法根据某个分隔符拆分字符串概述:在Java编程语言中,String类是一个非常重要和常用的类。String类提供了许多实用的方法,其中split()方法被用来拆分字符串。split()方法根据指定的分隔符将一个字符串分割成多个子字符串,并将这些子字符串存储在一个字符串数组中。本文将介绍如何使用String类的split

C#开发中如何使用WPF和WinForms进行界面设计引言:在C#开发中,界面设计是一个重要的环节。有多种界面设计工具和框架可供选择,比如WindowsPresentationFoundation(WPF)和WindowsForms(WinForms)。本文将介绍如何使用这两种工具进行界面设计,并提供具体的代码示例。希望能为开发者提供一些参考和帮助。一


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
