林文峰 发表于 2024-12-3 12:22:48

C# 如何在 PropertyGrid 中,对同一double的成员显示出不同的长度的内容?

这段时间搞东西,接触到这个,整了好几天。终于 Stackoverflow 上找到一个与我思路上一样的答案。之前用了好多遍 百度 AI 的方法都牛头不对马嘴。
看来 自己对 这一套 C# 的中的反射机制中的内容还不是太熟悉。所以摸了好久。
主要思路是这样的:
PropertyGrid 可以把一个对象中 public 成员 都显示到界面上去,供使用者修改,如下:
这个对象的类是这样的:
1 public class testObject
2 {
3   
4   public double MyDouble1 { get; set; }
5
6   
7   public double MyDouble2 { get; set; }
8 }在主程序里是这样把这个 对象 与 PropertyGrid 关联起来的:
public Form1()
{<br>   testObject to = new testObject();<br>
    InitializeComponent();

    to.MyDouble1 = 1.2222f;
    to.MyDouble2 = 2.1f;
    propertyGrid1.SelectedObject = to;
}显示出来是这样的:

可以看到,通过指定不同值的 PrecisonAttribute,让两个都是 double 的值,在 PropertyGrid 里显示出不同长度的小数点后长度值。
上面 testObject 里,两个 double 成员,都指定了 自定义的 typeConverter 的类 CustomDoubleConverter,如下:
public class CustomDoubleConverter : DoubleConverter
{

    public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
    {
      if (destinationType == typeof(string) && value is double doubleValue)
      {
            int d = 0;

            if ( context != null )
            {
                <strong>AttributeCollection ac </strong><strong>= context.PropertyDescriptor.Attributes;

                PrecisonAttribute pa = (PrecisonAttribute)ac;
                </strong>if (pa != null)
                  d = pa.Precison;
            }

            return doubleValue.ToString("N" + d, culture);
      }
      return base.ConvertTo(context, culture, value, destinationType);
    }
}

public class PrecisonAttribute : Attribute
{
    // The constructor is called when the attribute is set.
    public PrecisonAttribute(int value)
    {
      _precison = value;
    }

    // Keep a variable internally ...
    protected int _precison;

    // .. and show a copy to the outside world.
    public int Precison
    {
      get { return _precison; }
      set { _precison = value; }
    }
}以上这段代码里:
<strong>AttributeCollection ac = context.PropertyDescriptor.Attributes;

PrecisonAttribute pa = (PrecisonAttribute)ac;</strong>这两句就是本文精华。之前整了好久,都找不到如何在这里获得传入的其它元数据的。主要还是自己对 TypeConverter 结构 以及 反射机制不是很熟悉。所以也没仔细去看 context 这个参数。现在想想应该还是蛮合理的:上下文。

来源:https://www.cnblogs.com/pencilstart/p/18583765
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: C# 如何在 PropertyGrid 中,对同一double的成员显示出不同的长度的内容?