2011-11-26 4 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 또는 이와 같은보고 사용자 정의 구조체처럼 속성을 정의 할 수 있습니다.

관련 문제