文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

propertygrid多个对象怎么显示

2023-09-22 05:12

关注

在PropertyGrid中显示多个对象可以通过两种方式实现:
1. 使用属性类别:
- 创建一个父对象,其中包含多个子对象。
- 给每个子对象添加一个属性类别,以便在PropertyGrid中显示不同的分组。
- 在PropertyGrid中设置SelectedObject属性为父对象。
示例代码如下:
```csharp
public class ParentObject
{
[Category("Group 1")]
public string Property1 { get; set; }
[Category("Group 1")]
public int Property2 { get; set; }
[Category("Group 2")]
public bool Property3 { get; set; }
}
ParentObject parentObject = new ParentObject();
propertyGrid1.SelectedObject = parentObject;
```
2. 使用属性描述器:
- 创建一个自定义的属性描述器类,继承自ICustomTypeDescriptor接口,并实现相关方法。
- 在GetProperties方法中,返回包含多个对象属性的PropertyDescriptorCollection。
- 将实例化的属性描述器对象设置为PropertyGrid的SelectedObject属性。
示例代码如下:
```csharp
public class CustomTypeDescriptor : ICustomTypeDescriptor
{
private List objects;
public CustomTypeDescriptor(List objects)
{
this.objects = objects;
}
public AttributeCollection GetAttributes()
{
return TypeDescriptor.GetAttributes(this, true);
}
public string GetClassName()
{
return TypeDescriptor.GetClassName(this, true);
}
public string GetComponentName()
{
return TypeDescriptor.GetComponentName(this, true);
}
public TypeConverter GetConverter()
{
return TypeDescriptor.GetConverter(this, true);
}
public EventDescriptor GetDefaultEvent()
{
return TypeDescriptor.GetDefaultEvent(this, true);
}
public PropertyDescriptor GetDefaultProperty()
{
return TypeDescriptor.GetDefaultProperty(this, true);
}
public object GetEditor(Type editorBaseType)
{
return TypeDescriptor.GetEditor(this, editorBaseType, true);
}
public EventDescriptorCollection GetEvents(Attribute[] attributes)
{
return TypeDescriptor.GetEvents(this, attributes, true);
}
public EventDescriptorCollection GetEvents()
{
return TypeDescriptor.GetEvents(this, true);
}
public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
// 返回包含多个对象属性的PropertyDescriptorCollection
List properties = new List();
foreach (var obj in objects)
{
PropertyDescriptorCollection collection = TypeDescriptor.GetProperties(obj, attributes);
foreach (PropertyDescriptor descriptor in collection)
{
properties.Add(new CustomPropertyDescriptor(descriptor, obj));
}
}
return new PropertyDescriptorCollection(properties.ToArray());
}
public PropertyDescriptorCollection GetProperties()
{
return GetProperties(null);
}
public object GetPropertyOwner(PropertyDescriptor pd)
{
return this;
}
}
public class CustomPropertyDescriptor : PropertyDescriptor
{
private PropertyDescriptor descriptor;
private object obj;
public CustomPropertyDescriptor(PropertyDescriptor descriptor, object obj)
: base(descriptor)
{
this.descriptor = descriptor;
this.obj = obj;
}
public override object GetValue(object component)
{
return descriptor.GetValue(obj);
}
public override void SetValue(object component, object value)
{
descriptor.SetValue(obj, value);
}
public override void ResetValue(object component)
{
descriptor.ResetValue(obj);
}
public override bool CanResetValue(object component)
{
return descriptor.CanResetValue(obj);
}
public override bool ShouldSerializeValue(object component)
{
return descriptor.ShouldSerializeValue(obj);
}
public override Type ComponentType
{
get { return descriptor.ComponentType; }
}
public override bool IsReadOnly
{
get { return descriptor.IsReadOnly; }
}
public override Type PropertyType
{
get { return descriptor.PropertyType; }
}
}
List objects = new List
{
new object1(),
new object2(),
new object3()
};
CustomTypeDescriptor typeDescriptor = new CustomTypeDescriptor(objects);
propertyGrid1.SelectedObject = typeDescriptor;
```
以上两种方式都可以在PropertyGrid中显示多个对象的属性,并根据需要进行分组和组织。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧