link中如何判断一个事件里面有几个方法?如何选择性调用?

问题描述

link中如何判断一个事件里面有几个方法?如何选择性调用?

link中如何判断一个事件里面有几个方法?如何选择性调用?

解决方案

 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            button1.Click += button1_Click_1;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("button1_0");
        }
        private void button1_Click_1(object sender, EventArgs e)
        {
            MessageBox.Show("button1_1");
        }
        public static Delegate[] GetObjectEventList(object p_Object, string p_EventName, Type p_EventType)
        {
            PropertyInfo _PropertyInfo = p_Object.GetType().GetProperty("Events", BindingFlags.Instance | BindingFlags.NonPublic);
            if (_PropertyInfo != null)
            {
                object _EventList = _PropertyInfo.GetValue(p_Object, null);
                if (_EventList != null && _EventList is EventHandlerList)
                {
                    EventHandlerList _List = (EventHandlerList)_EventList;
                    FieldInfo _FieldInfo = p_EventType.GetField(p_EventName, BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.IgnoreCase);
                    if (_FieldInfo == null) return null;
                    Delegate _ObjectDelegate = _List[_FieldInfo.GetValue(p_Object)];
                    if (_ObjectDelegate == null) return null;
                    return _ObjectDelegate.GetInvocationList();
                }
            }
            return null;
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Delegate[] _List = GetObjectEventList(button1, "EventClick", typeof(Control));
            _List[1].Method.Invoke(this, new object[] { sender, e });
        }
    }
}

这段代码中点button2,只调用button1_Click_1

时间: 2025-01-02 07:50:55

link中如何判断一个事件里面有几个方法?如何选择性调用?的相关文章

link中如何遍历一个事件中所有的方法,遍历事件的方法是用发射么?

问题描述 link中如何遍历一个事件中所有的方法,遍历事件的方法是用发射么? link中如何遍历一个事件中所有的方法,遍历事件的方法是用发射么? 解决方案 public static Delegate[] GetObjectEventList(object p_Object, string p_EventName, Type p_EventType) { PropertyInfo _PropertyInfo = p_Object.GetType().GetProperty("Events&quo

objective-C中如何判断一个类中有没有定义某个方法

C#中可以通过反射分析元数据来解决这个问题,示例代码如下: using System; using System.Reflection; namespace Hello { class Program { static void Main(string[] args) { if (IsMethodDefined(typeof(Utils), "HelloWorld")) { Console.WriteLine("Utils类中有方法HelloWorld"); } e

java-JAVA中如何判断一个文件是否存在,如果不存在则创建它?

问题描述 JAVA中如何判断一个文件是否存在,如果不存在则创建它? JAVA中如何判断一个文件是否存在,如果不存在则创建它? 求帮助 源码如下: public void SaveFile(String fileName,String content) throws IOException{ File file =new File(fileName); if(!file.exists()){ System.out.println("不存在"); System.out.println(fi

link中如何颠倒一个二维数组?二维数组不支持revses吧?

问题描述 link中如何颠倒一个二维数组?二维数组不支持revses吧? link中如何颠倒一个二维数组?二维数组不支持revses吧? 解决方案 可以用select Enumerable.Range(0 arr.GetLength(1)).Select(x => Enumerable.Range(0 arr.GetLength(1)).Select(y => arr[x y]).Reverse().ToArray()).Reverse().ToArray(); 解决方案二: 长方形的矩阵有上

android 代码中怎么判断一个TextView有多少行?

问题描述 android 代码中怎么判断一个TextView有多少行? android 代码中怎么判断一个TextView有多少行? 解决方案 android.text.Layout包含此信息和更多final int lineCount = textView.getLayout().getLineCount(); 解决方案二: android.text.Layout包含此信息和更多final int lineCount = textView.getLayout().getLineCount();

link中如果定义一个和主程序一样的变量,会怎么样?

问题描述 link中如果定义一个和主程序一样的变量,会怎么样? link中如果定义一个和主程序一样的变量,会怎么样? 解决方案 这种问题不用问,你试试就知道了.编译器不允许你这么做的.

link中如何根据一个随机数,算出下一次产生的是什么随机数?用种子可以得到么?

问题描述 link中如何根据一个随机数,算出下一次产生的是什么随机数?用种子可以得到么? link中如何根据一个随机数,算出下一次产生的是什么随机数?用种子可以得到么? 解决方案 可以,只要使用确定的随机数算法,就可以得到.

link中如何点一个按钮删除一次文本框,再点一次再删除一个。

问题描述 link中如何点一个按钮删除一次文本框,再点一次再删除一个. link中如何点一个按钮删除一次文本框,再点一次再删除一个. 解决方案 Controls.Remove[Controls["控件名"]]

link下,比如有一个事件,+=了两个方法,如何只执行第二个方法,不执行第一个?

问题描述 link下,比如有一个事件,+=了两个方法,如何只执行第二个方法,不执行第一个? link下,比如有一个事件,+=了两个方法,如何只执行第二个方法,不执行第一个? 解决方案 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Reflecti