C# 遍历控件属性,针对性隐藏。
需求:遍历某个控件的所有属性,判断得到自己想要的几个属性,设置这几个属性可以在显示在propertyGrid上(用户可看),其余的所有都隐藏掉不显示,最终就是proper...
需求:遍历某个控件的所有属性,判断得到自己想要的几个属性,设置这几个属性可以在显示在propertyGrid上(用户可看),其余的所有都隐藏掉不显示,最终就是propertyGrid上只显示我需要用到的几个属性,其他的都没有出现在propertyGrid上边。不知我讲明白没有。跪求各位大佬给出简单的解决方案,demo,思路!谢谢
展开
1个回答
展开全部
解决方案:为了实现只显示所需属性,我创建了一个派生自CustomTypeDescriptor的类CustomObjectWrapper,这个类的BrowsableProperties属性为你需要显示的控件属性,在构造函数中进行了设置,我这里设置的是Text和BackColor,然后在窗体的后台代码的Form_Load事件中实例化一个CustomObjectWrapper类,将你需要的设置的控件在其构造函数中传入,并赋给PropertyGrid的SelectedObject 属性。CustomObjectWrapper类:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Test
{
public class CustomObjectWrapper : CustomTypeDescriptor
{
public object WrappedObject { get; private set; }
public List<string> BrowsableProperties { get; private set; }
public CustomObjectWrapper(object wrappedObject)
: base(TypeDescriptor.GetProvider(wrappedObject).GetTypeDescriptor(wrappedObject))
{
WrappedObject = wrappedObject;
BrowsableProperties = new List<string>() { "Text", "BackColor" };
}
public override PropertyDescriptorCollection GetProperties()
{
return this.GetProperties(new Attribute[] { });
}
public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
var properties = base.GetProperties(attributes).Cast<PropertyDescriptor>()
.Where(p => BrowsableProperties.Contains(p.Name))
.Select(p => TypeDescriptor.CreateProperty(
WrappedObject.GetType(),
p,
p.Attributes.Cast<Attribute>().ToArray()))
.ToArray();
return new PropertyDescriptorCollection(properties);
}
}
}
Form的Load事件:
private void Form1_Load(object sender, EventArgs e)
{
this.propertyGrid1.SelectedObject = new CustomObjectWrapper(this.textBox1);
}
运行界面效果如下:
追问
谢谢您。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询