2011-11-26 36 views

回答

0

保證金屬性被定義爲一個結構:

public struct Padding 
{ 
    public int All { get; set; }; 
    public int Bottom { get; set; } 
    public int Left { get; set; } 
    public int Right { get; set; } 
    ... 
} 

所以,你可以定義你的財產爲Padding或使用自定義的結構看起來像這一個。

相關問題