摘要: 一、事件参数 //事件参数 class CustomEventArgs:EventArgs { public CustomEventArgs( string message) { Message = message; } public string Message { get; set; } } 二 阅读全文
posted @ 2022-03-23 16:13 码农阿亮 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 一、定义委托 delegate void StudentDelegate();//【1】定义一个委托 二、定义一个调用和定义事件的类 /// <summary> ///定义事件和调用 事件一定要放在一个类里面 /// </summary> class InvokeDefine //【2】定义一个调用 阅读全文
posted @ 2022-03-23 15:16 码农阿亮 阅读(64) 评论(0) 推荐(0) 编辑