C# 属性绑定

C#的反射明显的比AS3的反射要强很多啊。可以从外部访问到类的私有成员。举个例子:

                Type _class = this.GetType();
                FieldInfo _field = _class.GetField(@fieldName, BindingFlags.Instance | BindingFlags.NonPublic);

枚举 : BindingFlags.NonPublic ->非公共成员将包括在内进行搜索,意思就是private成员也可以搜索到。

在model中注册须发的主题(User)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BindLib.com;

namespace BindDemo.com.model
{
    public sealed class User : BaseDataModel
    {
        private int _hp = 1000;
        public int Hp
        {
            get { return _hp; }
            //绑定hp(血量)
            set { this.ChangeValue<int>("Hp","_hp",value); }
        }

        private bool _isLive = false;

        public bool IsLive
        {
            get { return _isLive; }
            set { this.ChangeValue<bool>("IsLive", "_isLive", value); }
        }
    }
}

这的注意的是字段_hp和字段_isLive都是private(私用的): 这个和AS3绑定(见 AS3 属性绑定/上一篇)有很大的不同,这得益于C#可以从外部访问private

view中需要绑定(注册侦听)(UserView)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BindLib;

namespace BindDemo.com.model
{
    public sealed class UserView
    {
        public User user;
        private int _hp;
        public int Hp
        {
            set { 
                this._hp = value ;
                Console.WriteLine("血量 {0}", value);
            }
            get { return this._hp; }
        }
        public UserView()
        {
            user = new User();
            BindTools.BindProperty<int>(this, "Hp", user, "Hp", true);
            BindTools.BindSetter<bool>(this.UpdateIsLive, user, "IsLive",true);
        }

        private void UpdateIsLive(bool @isLive)
        {
            Console.WriteLine(@isLive ? "活着" : "战死");
        }

    }
}

好了 , 具体参数意思可以参考(《AS3 属性绑定》篇,上篇)

测试:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BindDemo.com.model;

namespace BindDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            UserView _uM = new UserView();
            Console.WriteLine("获得hp : {0}" , _uM.Hp);
            User uR = _uM.user;
            uR.Hp = 89;
            Console.WriteLine("改变获得hp : {0}", _uM.Hp);
            Console.WriteLine("-------------------------------------------------");
            uR.IsLive = true;
            Console.WriteLine("#################################################");
            uR.IsLive = false;
            Console.ReadLine();
        }
    }
}

结果:

时间: 2024-10-07 08:06:33

C# 属性绑定的相关文章

Vue.js学习笔记:属性绑定 v-bind

v-bind  主要用于属性绑定,Vue官方提供了一个简写方式 :bind,例如: <!-- 完整语法 --> <a v-bind:href="url"></a> <!-- 缩写 --> <a :href="url"></a> 绑定HTML Class 一.对象语法: 我们可以给v-bind:class 一个对象,以动态地切换class.注意:v-bind:class指令可以与普通的class特

Ember.js 入门指南——handlebars属性绑定

本文从http://www.ibeginer.sinaapp.com迁移过来,欢迎访问原页面. 简单讲属性绑定其实就是在HTML标签内(是在一个标签的"<"和">"中使用)直接使用handlebars表达式.可以直接用handlebars表达式的值作为HTML标签中某个属性的值. 准备工作:ember generate route binding-element-attributes 1,绑定字符串 <!-- //  app/templates/b

【WPF】如何把一个枚举属性绑定到多个RadioButton

一.说明 很多时候,我们要把一个枚举的属性的绑定到一组RadioButton上.大家都知道是使用IValueConverter来做,但到底怎么做才好? 而且多个RadioButton的Checked和UnChecked都会触发绑定,这样就会调多次的Set. 二.目的 实现一个枚举属性绑定到多个RadioButton, 属性的Set方法不会被触发多次. 三.实现 方法大家都知道,就是利用Converter和ConevertParamter属性. 因为多个控件绑定一个属性,Checked和UnChe

使用注解属性绑定

大家应该知道在Spring中有一个注解@Value,他可以帮助我们来讲Spring加载的配置文件(*.perperties)文件中的信息自动的注入到我们的非静态属性中的. 一般情况下我们会这样使用: 1. 首先在Spring的配置文件中加载属性文件: ? 1 <context:property-placeholder location="classpath:component.properties"  ignore-unresolvable="true"/&g

qml中的属性绑定与赋值

浅谈qml属性绑定与赋值 属性赋值 就字面意思,赋一个值给属性 Rectangle { id:rect Component.onCompeleted:{ rect.width = 10; // 赋值 rect.height = 10; // 赋值 rect.color = "red"; // 赋值 } } 属性赋值时会发出信号,可以通过信号处理器,来为信号添加处理函数,关于信号处理器,也就是连接到同一个信号的槽函数的队列,每次为信号处理器书写处理函数时,并不会覆盖上一次书写的处理器,最

Knockoutjs实例 - 属性绑定(Bindings)之流程控制(Control flow)

一.foreach binding 使用此功能可以方便我们循环遍历输出某个数组.集合中的内容. (1).循环遍历输出数组 View Row Code 1 <script type="text/javascript" src="knockout-2.2.0.js"></script> 2   3 <table> 4      <thead> 5          <tr><th>First nam

xaml mvvm(2)之属性绑定

通过微软INotifyPropertyChanged接口,可以实现对UI实时更新,不管是数据源或者目标对象,可以实现相互通知. 下面我们根据INotifyPropertyChanged编写一个扩展类.该类是基于C#5.0特性,这里我们介绍一下System.Runtime.CompilerServices命名空间下的CallerMemberName特性,当RaisePropertyChanged的属性名称参数为空,而通过编译器可以智能加上,可以通过反编译工具知晓,这点改进这点很人性化.注:如果开发

属性绑定与赋值

首先看下面一段示例代码: 1 import QtQuick 2.4 2 import QtQuick.Controls 1.3 3 import QtQuick.Window 2.2 4 import QtQuick.Dialogs 1.2 5 6 Rectangle{ 7 id: root 8 width: 320 9 height: 320 10 color: "red" 11 opacity: 0.3 12 13 Text { 14 id: label 15 x: 20; y:

vue属性绑定和属性简写

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>属性绑定和属性简写</title> </head> <script type="text/javascript" src="js/vue.js" ></script> <script> window.onl