c#在WinForm和WebForm中根据控件和属性名获取控件属性值
在WinForm中开发的过程中,所有继承了Control控件,在使用多线程的时候,就需要通过一个通用的方法来设置界面上的控件的属性。
delegate void DelegateSetControl(Control ctrObj, string attrName, object attrVal); public static void SetControlValue(Control ctrObj, string attrName, object attrVal) { if (ctrObj.InvokeRequired) { DelegateSetControl delegateSetButtion = new DelegateSetControl(SetControlValue);//实例化委托对象 ctrObj.Invoke(delegateSetButtion, ctrObj, attrName, attrVal); } else { ctrObj.GetType().GetProperty(attrName).SetValue(ctrObj, attrVal); } }
所以,才有了下面的方法:
Control control = Controls.Find("button1", true)[0];
object o = control.GetType().GetProperty("PropertyName").GetValue(control, null);
System.Reflection.EventInfo ev = control.GetType().GetEvent("Click");
你这是要获取事件吧,第二行是获取属性,第三行是获取事件
出处:https://blog.csdn.net/lunyesheng/article/details/52932477
======================================================
顺便看到网上有 WebForm 获取控件的,也一起贴出来吧!
t.Attributes.Add(
"s"
,
"abc"
);
Response.Write(t.Attributes[
"s"
]);
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/11126108.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2019-07-03 14:16 jack_Meng 阅读(3542) 评论(0) 编辑 收藏 举报