3

我有一个propertygrid,myclass 是它的objectsource。在我的课堂上,我从 Size 类型中定义了一项。如何在项目属性中设置默认值?

请看我的代码:

[CategoryAttribute("Information"), DefaultValue(Size(0, 0))]
public Size AndaazehPixel { get; set; }

我的错误:“System.Drawing.Size”是“类型”,但用作“变量”

4

1 回答 1

8

试试这样:

[DefaultValue(typeof(Size), "0, 0")]
public Size AndaazehPixel { get; set; }
于 2012-09-27T21:43:50.740 回答