C# wpf style中实现ListBox自动生成序号
2021/10/27 1:10:54
本文主要是介绍C# wpf style中实现ListBox自动生成序号,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文章目录
- 前言
- 一、实现步骤
- 1.创建资源字典
- 2.创建cs文件
- 2.定义附加属性
- 3.附加属性赋值
- 4.回调中实现序号功能
- 二、使用方法
- 总结
前言
本文是《C# wpf 一种style中调用cs代码的方法》的示例,也是《C# wpf ListBox自动生成序号》的另一种实现。在style中生成序号,ListBox中的元素的文本标签只需应用style即可。
提示:以下是本篇文章正文内容,下面案例可供参考
一、实现步骤
1.创建资源字典
创建一个资源字典用于定义style。名称为TextBlockStyle.xaml。
创建之后如下图所示。
2.创建cs文件
创建一个资源字典对应的cs文件,这里要注意名称要与资源字典文件名相同加cs后缀,这样vs会把cs文件当成资源字典文件的附属文件,可以自动折叠。如下图所示。
cs文件就会变成资源字典的附属文件。
2.定义附加属性
在TextBlockStyle.xaml.cs中定义一个附加属性,名称为TextBlockInit。附加属性通过propa+tab的方式快捷定义。
using System.Windows; namespace WpfApp1 { class TextBlockStyle { public static bool GetTextBlockInit(DependencyObject obj) { return (bool)obj.GetValue(TextBlockInitProperty); } public static void SetTextBlockInit(DependencyObject obj, bool value) { obj.SetValue(TextBlockInitProperty, value); } // Using a DependencyProperty as the backing store for TextBlockInit. This enables animation, styling, binding, etc... public static readonly DependencyProperty TextBlockInitProperty = DependencyProperty.RegisterAttached("TextBlockInit", typeof(bool), typeof(TextBlockStyle), new PropertyMetadata(false,PropertyChangedCallback)); } }
3.附加属性赋值
在资源字典中,定义一个Style标签,名称为TextBlockStyle_Generate_Sequence_Number,并给上述定义的附加属性赋值。
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfApp1"> <Style x:Key="TextBlockStyle_Sequence_Number" TargetType="TextBlock"> <!--给附加属性赋值--> <Setter Property="local:TextBlockStyle.TextBlockInit" Value="True"></Setter> </Style> </ResourceDictionary>
4.回调中实现序号功能
在TextBlockStyle.xaml.cs的TextBlockInit依赖属性改变事件中注册TextBlock的Loaded事件,然后根据《C# wpf ListBox自动生成序号》的方法,实现序号功能。
static T GetAncestor<T>(Visual v) where T : DependencyObject { var a = VisualTreeHelper.GetParent(v); while (a != null) { if (a is T) return (T)a; a = VisualTreeHelper.GetParent(a); } return null; } static void PropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) { //d即是Style应用的对象。 var textBlock = d as TextBlock; //注册Loaded事件 textBlock.Loaded += (S, E) => { TextBlock tb = S as TextBlock; var lb = GetAncestor<Selector>(tb); if (lb == null) return; tb.Text = (lb.Items.IndexOf(tb.DataContext) + 1).ToString(); }; }
二、使用方法
引用资源字典
<ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="TextBlockStyle.xaml" /> </ResourceDictionary.MergedDictionaries> </ResourceDictionary>
在ListBox中的TexBlock使用Style
<ListBox Height="552" Width="440" > <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" Width="200"> <!--使用style自动生成序号--> <TextBlock Style="{DynamicResource TextBlockStyle_Sequence_Number}" VerticalAlignment="Center" FontSize="32" Foreground="#999999" ></TextBlock> <TextBlock Margin="20" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="32" Foreground="#666666" Text="张三"></TextBlock> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> <ListBox.Items> <Control/> <Control/> <Control/> <Control/> <Control/> <Control/> </ListBox.Items> </ListBox>
显示效果
总结
以上就是今天要讲的内容,本文介绍的在style中实现的自动生成序号功能,相对于《C# wpf ListBox自动生成序号》减少了代码耦合和冗余,不需要在每个地方都注册TextBlock的Loaded事件,只需要引用资源字典使用style。而且定义在资源字典中还具有通用性,放到任何项目都可以直接使用。
这篇关于C# wpf style中实现ListBox自动生成序号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#