c# winform 按名称取得控件
2020-12-13 04:16
阅读:379
标签:winform for cti io re type //取得特定名称的控件 Control control = Controls.Find("button1", true)[0]; //取得该控件的属性 //取得该控件的事件 c# winform 按名称取得控件,搜素材,soscw.com c# winform 按名称取得控件 标签:winform for cti io re type 原文地址:http://www.cnblogs.com/swtool/p/3840177.html
object o = control.GetType().GetProperty("PropertyName").GetValue(control, null);
System.Reflection.EventInfo ev = control.GetType().GetEvent("Click");
下一篇:单词排序
评论
亲,登录后才可以留言!