gpt4 book ai didi

c# - 属性网格中属性 "Name"的特殊含义

转载 作者:太空宇宙 更新时间:2023-11-03 10:50:02 24 4
gpt4 key购买 nike

  • 我使用 PropertyGrid 允许最终用户编辑类中的属性 ClassA
  • 这个类有一个 List<ClassB>属性(property)。
  • 对于 List<ClassB>属性,PropertyGrid 显示 (Collection)和一个带有 3 个点的按钮,可以打开一个新窗口,如下所示(取自 another SO post)。

enter image description here

  • 我想自定义 Members: DisplayName 在左边,因此为 ClassB我已经覆盖了 ToString()方法

    public class ClassB
    {
    public string Name { get; set; }
    public TimeSpan Value { get; set; }

    public override ToString() { return String.Format("{0} ({1})", this.Name, this.Value); }
    }

问题来了:

  • 如果名称为空,则显示 (00:00:00)正如预期的那样。
  • 如果我将名称更改为 Test,我希望它显示 Test (00:00:00) , 但它只显示 Test
  • 如果我将属性名称重命名为其他名称,它将按预期工作。

我想这是一个特殊的约定,如果一个类有一个属性 Name并且值不为 null 或空,控件显示此属性而不是名称。

但是,我还没有找到可以验证这一点的文档,而且我不知道如何更改此行为。我该如何实现?

注意:不能更改属性名称。

最佳答案

不幸的是,CollectionEditor.GetDisplayText Method 中的逻辑相当硬编码.它没有记录,但您可以使用工具将其拆卸。这是代码:

protected virtual string GetDisplayText(object value)
{
string str;
if (value == null)
return string.Empty;

// use the Name property
PropertyDescriptor defaultProperty = TypeDescriptor.GetProperties(value)["Name"];
if ((defaultProperty != null) && (defaultProperty.PropertyType == typeof(string)))
{
str = (string) defaultProperty.GetValue(value);
if ((str != null) && (str.Length > 0))
{
return str;
}
}

// or use the DefaultPropertyAttribute
defaultProperty = TypeDescriptor.GetDefaultProperty(this.CollectionType);
if ((defaultProperty != null) && (defaultProperty.PropertyType == typeof(string)))
{
str = (string) defaultProperty.GetValue(value);
if ((str != null) && (str.Length > 0))
{
return str;
}
}

// or use the TypeConverter
str = TypeDescriptor.GetConverter(value).ConvertToString(value);
if ((str != null) && (str.Length != 0))
{
return str;
}

// or use the type name
return value.GetType().Name;
}

这段代码非常糟糕,因为它基本上以相反的方式做事。它应该使用 Name 属性作为最后的手段,而不是专注于它......

但是,由于 CollectionEditor 类没有被密封,所有的希望都没有丢失。这是您可以修复它的方法:

1) 在持有集合的类上声明 EditorAttribute,如下所示:

public class ClassA
{
[Editor(typeof(MyCollectionEditor), typeof(UITypeEditor))]
public List<ClassB> List { get; set; }
}

2) 像这样定义您的自定义集合编辑器;

public class MyCollectionEditor : CollectionEditor // needs a reference to System.Design
{
public MyCollectionEditor(Type type)
: base(type)
{
}

protected override string GetDisplayText(object value)
{
// force ToString() usage, but
// you also could implement some custom logic here
return string.Format("{0}", value);
}
}

关于c# - 属性网格中属性 "Name"的特殊含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21750513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com