有没有办法隐藏“CollectionPropertiesEditor的PropertyGrid”中的show属性 最近我发现有一种方法可以在运行时更改PropertyGrid的Browsable属性。
我想知道是否可以对“CollectionPropertiesEditor的PropertyGrid”进行此操作,我在Google搜索上找不到相关结果时未能成功。现在我希望StackOverflow帮助我解决这个问题。
问题:由于新的客户要求,我不得不为GridColumn控件添加一些属性。
[Category("Extra")]
[Browsable(true)]
public int? Position { get; set; }
[Category("Extra")]
[Browsable(true)]
public string storedColumn { get; set; }
我希望早些时候工作:
[Category("Extra")]
[Browsable(matchSomeRunTimeCondition)]
public int? Position { get; set; }
[Category("Extra")]
[Browsable(matchSomeRunTimeCondition)]
public string storedColumn { get; set; }
为什么不起作用?
因为Browsable Attribute只能接受Constant。 matchSomeRunTimeCondition
不是常数。用户可以在应用程序仍在运行时随时更改它。
在代码中,如果有一个函数可以让我在运行时使这些看不见,那么如果有人可以帮我写一个这样的函数或条件语句,我会非常高兴:
if(property's category ==“Extra”){
//不要在propertygrid中显示此属性。
//或换句话说,在运行时使Browasable Attribute为False。
}
在编译时,我将Browsable属性设置为true
,因为它需要在某些条件下可见。但我需要一种机制来根据用户在运行时的选择来隐藏它。
通过在加载所选控件时设置它来解决此问题,如帖子所述:Make all properties with specific Category name invisible in PropertyGrid in c# Winforms at Runtime based on some condition
然而,在我用来保存网格列的CollectionPropertiesEditor中没有这种奢侈(至少我找不到怎么做)。
我以GridColumns列表的形式存储网格的所有网格列作为属性。
这就是我目前将GridColumns存储在Grid的属性中的方式:
[Browsable(true)]
[Editor(typeof(CollectionPropertiesEditor), typeof(UITypeEditor))]
public List<TGridColumn> Columns { get; set; }
答案 0 :(得分:2)
您应该通过派生CustomTypeDescriptor
或实施ICustomTypeDescriptor
来编写自己的类型描述符。这是一个例子:
<强> MyPropertyDescriptor 强>
提供属性的自定义说明。在这里,我重写Attributes
属性以提供属性的新属性列表。例如,我检查属性是否有[Category("Extra")]
,我还在其属性集合中添加了[Browsable(false)]
。
using System;
using System.ComponentModel;
using System.Linq;
public class MyPropertyDescriptor : PropertyDescriptor
{
PropertyDescriptor o;
public MyPropertyDescriptor(PropertyDescriptor originalProperty)
: base(originalProperty) { o = originalProperty; }
public override bool CanResetValue(object component)
{ return o.CanResetValue(component); }
public override object GetValue(object component) { return o.GetValue(component); }
public override void ResetValue(object component) { o.ResetValue(component); }
public override void SetValue(object component, object value)
{ o.SetValue(component, value); }
public override bool ShouldSerializeValue(object component)
{ return o.ShouldSerializeValue(component); }
public override AttributeCollection Attributes
{
get
{
var attributes = base.Attributes.Cast<Attribute>().ToList();
var category = attributes.OfType<CategoryAttribute>().FirstOrDefault();
if (category != null && category.Category == "Extra")
attributes.Add(new BrowsableAttribute(false));
return new AttributeCollection(attributes.ToArray());
}
}
public override Type ComponentType { get { return o.ComponentType; } }
public override bool IsReadOnly { get { return o.IsReadOnly; } }
public override Type PropertyType { get { return o.PropertyType; } }
}
<强> MyTypeDescriptor 强>
用于提供类型的自定义属性描述符列表。
using System;
using System.ComponentModel;
using System.Linq;
public class MyTypeDescriptor : CustomTypeDescriptor
{
ICustomTypeDescriptor original;
public MyTypeDescriptor(ICustomTypeDescriptor originalDescriptor)
: base(originalDescriptor) { original = originalDescriptor; }
public override PropertyDescriptorCollection GetProperties()
{ return this.GetProperties(new Attribute[] { }); }
public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
var properties = base.GetProperties(attributes).Cast<PropertyDescriptor>()
.Select(p => new MyPropertyDescriptor(p))
.ToArray();
return new PropertyDescriptorCollection(properties);
}
}
<强> MyTypeDescriptionProvider 强>
用于使用MyTypeDescriptor
属性将TypeDescriptionProvider
连接到班级。
using System;
using System.ComponentModel;
public class MyTypeDescriptionProvider : TypeDescriptionProvider
{
public MyTypeDescriptionProvider()
: base(TypeDescriptor.GetProvider(typeof(object))) { }
public override ICustomTypeDescriptor GetTypeDescriptor(Type type, object o)
{
ICustomTypeDescriptor baseDescriptor = base.GetTypeDescriptor(type, o);
return new MyTypeDescriptor(baseDescriptor);
}
}
<强> MySampleClass 强>
包含用[Category("Extra")]
修饰的属性。因此Property2
在属性网格中不可见。 (在visual studio或集合编辑器甚至是运行时属性网格中)
[TypeDescriptionProvider(typeof(MyTypeDescriptionProvider))]
public class MySampleClass
{
public int Property1 { get; set; }
[Category("Extra")]
public string Property2 { get; set; }
}
<强> MyComplexComponent 强>
包含MySampleClass
的集合。因此,您可以在集合编辑器中看到MySampleClass
的行为。
using System.Collections.ObjectModel;
using System.ComponentModel;
public class MyComplexComponent:Component
{
public MyComplexComponent()
{
MySampleClasses = new Collection<MySampleClass>();
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public Collection<MySampleClass> MySampleClasses { get; set; }
}
<强>截图强>