如何从默认值属性分配属性值

本文关键字:属性 分配 默认值 | 更新日期: 2023-09-27 18:32:47

例如,我有一个属性数量很多(大约 30 个)的类

 [DisplayName("Steps to stacker"), DefaultValue(20)]
 [Description("Value in obturator steps")]
 public int StepsToStacker { get; set; }
 [DisplayName("Enter time"), DefaultValue(120)]
 [Description("Value in milliseconds")]
 public int EnterTime { get; set; }

有没有一种简单的方法来实现从DefaultValue加载值LoadDefaultValues()

如何从默认值属性分配属性值

尽管该属性的预期用途不是实际设置属性的值,但无论如何都可以使用反射来始终设置它们。

foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
        {
            DefaultValueAttribute myAttribute = (DefaultValueAttribute)property.Attributes[typeof(DefaultValueAttribute)];
            if (myAttribute != null)
            {
                property.SetValue(this, myAttribute.Value);
            }
        }

抱歉,我的 qustion id 重复。此代码工作正常

public void LoadDefaultValues()
{
   foreach (PropertyInfo p in this.GetType().GetProperties())
   {
       foreach (Attribute attr in p.GetCustomAttributes(true))
       {
           if (attr is DefaultValueAttribute)
           {
                DefaultValueAttribute dv = (DefaultValueAttribute)attr;
                p.SetValue(this, dv.Value, null);
           }
        }
    }
}