So far, we worked with styles by setting a static value for a specific property. However, using triggers, you can change the value of a given property, once a certain condition changes. Triggers come in multiple flavors: Property triggers, event trig…
wpf中,根据数据的值的不同,UI的界面随之改变(显示控件.隐藏控件以及改变控件的其它属性), 这时我们可以用DataTrigger数据触发器. 下面两个案例实现同样的功能,当条件(数据的值)不同时,显示不同的按钮. 创建 Core类: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace DataTr…
官方文档中对DataTrigger的介绍 Represents a trigger that applies property values or performs actions when the bound data meets a specified condition. 某词典的翻译: 当绑定的数据满足指定的条件时,应用(指定的)属性或执行操作的触发器 下面我演示一遍官方文档中的示例,根据官网的描述,建立实体类,然后编写前台代码 先来张效果图 通过DataTrigger,将省份为江苏省的…