我有一个属性网格,myclass是它的对象源。在我的班级中,我从大小类型中定义了一个项目。如何在item属性中设置默认值?
请参阅我的代码:
[CategoryAttribute("Information"), DefaultValue(Size(0, 0))]
public Size AndaazehPixel { get; set; }
我的错误:' System.Drawing.Size'是一种'类型'但用作变量'
答案 0 :(得分:5)
试试这样:
[DefaultValue(typeof(Size), "0, 0")]
public Size AndaazehPixel { get; set; }