整理代码块
代码块整理后存储,供后期使用
C# 获取属性,获取事件逻辑
Control control = Controls.Find("button1", true)[0];
// 获取属性
object o = control.GetType().GetProperty("PropertyName").GetValue(control, null);
// 获取事件
System.Reflection.EventInfo ev = control.GetType().GetEvent("Click");
winform 自定义控件 的自定义方法, 显示到属性控件事件栏的 自定义事件
public delegate void XxxEventHandler(object sender,XxxEventArges e);
public event XxxEventHandler Xxx; // 显示到控件事件栏
protected virtual void OnXxx(XxxEventArges e)
{
if(Xxx != null)
Xxx(this,e);
}
标签:control,控件,自定义,获取,事件,属性,winform
From: https://www.cnblogs.com/Katakana/p/17917637.html