zoukankan      html  css  js  c++  java
  • 利用反射绑定事件处理程序(C#)

    传统的写法:强类型的情况下

    using System;
    using System.Collections.Generic;
    using System.Text;

    using System.Reflection;

    namespace ConsoleApplication3
    {
        class Program
        {
            static void Main(string[] args)
            {
                Customer c = new Customer();
                c.OnChange += new EventHandler(c_OnChange);

                c.Change();
                Console.Read();

            }

            static void c_OnChange(object sender, EventArgs e)
            {
                Console.WriteLine("事件被触发了");
            }
        }

        class Customer
        {
            public event EventHandler OnChange;
            public void Change()
            {
                if (OnChange != null)
                    OnChange(this, null);
            }
        }
    }

    值得了解的另外一个写法

    using System;
    using System.Collections.Generic;
    using System.Text;

    using System.Reflection;

    namespace ConsoleApplication3
    {
        class Program
        {
            static void Main(string[] args)
            {
                Customer c = new Customer();
                EventInfo evt = c.GetType().GetEvent("OnChange",
                        BindingFlags.NonPublic | BindingFlags.Instance
                        | BindingFlags.Public
                    );

                evt.AddEventHandler(c, new EventHandler(c_OnChange));

                c.Change();
                Console.Read();

            }

            static void c_OnChange(object sender, EventArgs e)
            {
                Console.WriteLine("事件被触发了");
            }
        }

        class Customer
        {
            public event EventHandler OnChange;
            public void Change()
            {
                if (OnChange != null)
                    OnChange(this, null);
            }
        }
    }

  • 相关阅读:
    django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.
    Error fetching command 'collectstatic': You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path. Command 'collectstatic' skipped
    windows 虚拟环境下 安装 mysql 引擎一系列错误处理
    项目概念流程
    pip 使用
    HTTPserver v3.0 版本项目
    GitHub 使用
    git 操作命令详解
    git 忽略部分文件类型的同步
    Python 正则处理_re模块
  • 原文地址:https://www.cnblogs.com/chenxizhang/p/1501621.html
Copyright © 2011-2022 走看看