C# 中用户控件设置了只读属性,那么怎么确定它只有只读属性呢?
一个控件有多个属性,其中有set和get,还有一些只用了get。那么在取回控件的过程中,如何用代码确定哪些是用了get,哪些用了set和get呢?...
一个控件有多个属性,其中有set 和get,还有一些只用了get。那么在取回控件的过程中,如何用代码确定哪些是用了get,哪些用了set 和get呢?
展开
1个回答
展开全部
你可以用反射得到这个控件的属性,然后根据他的CanRead和CanWrite判断。
代码如下:
using System.Reflection;
private void button1_Click(object sender, EventArgs e)
{
Button button = new Button();
Type type = button.GetType();
PropertyInfo[] propertyInfos = type.GetProperties(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
MessageBox.Show(string.Format("属性名:{0} 可读:{1} 可写:{2}", propertyInfos[0].Name, propertyInfos[0].CanRead, propertyInfos[0].CanWrite));
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询