文章目录
前言
本文是《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。而且定义在资源字典中还具有通用性,放到任何项目都可以直接使用。