본문 바로가기

C#

[Winform] 유저 컨트롤에 속성 추가

728x90
[Category("IsNumber"), Description("숫자인지 여부")]
public bool IsNumber
{
       get;
       set;
}

위 코드를 추가하면 컨트롤 속성에 추가되어서 편집해서 사용하면 된다.

 

[출처]

https://bravochoi.tistory.com/115

728x90