博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF整理-自定义一个扩展标记(custom markup extension)
阅读量:6340 次
发布时间:2019-06-22

本文共 1535 字,大约阅读时间需要 5 分钟。

"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."

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

我们可以这样实现这个标记扩展。

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类库的引用。

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

 

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

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

使用方法看懂类没有?没有?关注那个构造函数。也可参考DebugLZQ的博文:

设计器中效果如下:

运行之,效果如下:

 

 

转载地址:http://yjhoa.baihongyu.com/

你可能感兴趣的文章
MaxCompute,基于Serverless的高可用大数据服务
查看>>
使用Oracle VM VirtualBox 图形化安装CENTOS6.4 的 配置教程
查看>>
Ambari 单节点 docker 一键部署
查看>>
Docker查看 启动容器
查看>>
shell 写入标准错误 write in stderr
查看>>
zeppelin 配置 hive
查看>>
php 简单对象的创建
查看>>
django mod_python 多进程
查看>>
cms.auth.json在结尾多写了一个逗号不识别
查看>>
Oracle语句总结
查看>>
莫言的想象力通行全世界
查看>>
ubuntu下nodejs安装与版本升级
查看>>
TP add方法参数详解
查看>>
LVM管理
查看>>
CentOS 搭建LNMP环境
查看>>
python学习心得(1)
查看>>
浅尝Kivy
查看>>
OS X配置环境变量
查看>>
vim基本模式间的切换
查看>>
观察者模式
查看>>