WPF整理-自定义一个扩展标记(custom markup extension)

"Markup extensions are used to extend the capabilities of XAML, by providing declarative
operations that need more than just setting some properties. These can be used to do pretty
much anything, so caution is advised – these extensions must preserve the declarative nature
of XAML, so that non-declarative operations are avoided; these should be handled by normal
C# code."

假如我们需要实现下面的扩展标记,这个标记扩展用来提供个随机数。

<TextBlock FontSize="{ mext:Random 10,100}" Text="DebugLZQ" x:Name="text1"/>

我们可以这样实现这个标记扩展。
1.添加一个名为CustomMarkupExtension的类库,添加一个RandomExtension.cs类,让它继承自MarkupExtension。因为MarkupExtension类在System.Xaml程序集中,因此需要添加该程序集引用。

 为实现标记扩展,我们还需要实现MarkupExtension类的ProvideValue方法。

 RandomExtension.cs如下:

复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Markup;

namespace CustomMarkupExtension
{
    public class RandomExtension:MarkupExtension
    {
        readonly int _from, _to;

        public RandomExtension(int from,int to)
        {
            _from = from;
            _to = to;
        }

        public RandomExtension(int to):this(0,to)
        {
        }

        static readonly Random _rdn = new Random();


        public override object ProvideValue(IServiceProvider serviceProvider)
        {
            return (double)_rdn.Next(_from, _to);
        }
    }
}
复制代码

OK,完成。

2.使用这个标记扩展。我们新建一个名为TestRandom的WPF程序,添加CustomMarkupExtension类库的引用。

在需要使用的页面中,添加一个映射:

<Window x:Class="TestRandom.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mext="clr-namespace:CustomMarkupExtension;assembly=CustomMarkupExtension"

注意这个映射和前面的一些映射的不同之处是:因为clr-namespace不在TestRandom程序集中,因此必须注明所在程序集名称!

这样我们就可以使用如下:

    <StackPanel>
        <TextBlock FontSize="{ mext:Random 10,100}" Text="DebugLZQ" x:Name="text1"/>
        <TextBlock Text="{Binding FontSize, ElementName=text1}"/>
    </StackPanel>

使用方法看懂类没有?没有?关注那个构造函数。也可参考DebugLZQ的博文:WPF整理-XAML构建后台类对象

设计器中效果如下:

运行之,效果如下:

 

 

posted @   DebugLZQ  阅读(4751)  评论(7编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· 字符编码:从基础到乱码解决
· Open-Sora 2.0 重磅开源!
历史上的今天:
2012-06-27 PL/SQL Developer 连接Oracle数据库详细配置方法
点击右上角即可分享
微信分享提示