■ 커스텀 컨트롤 속성 정의시 어트리뷰트를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
using System.ComponentModel; /// <summary> /// 점수 /// </summary> private int score = 0; /// <summary> /// 점수 /// </summary> [Category("TestControl")] [DefaultValue(100)] [Browsable(true)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] [Description("점수를 가져오거나 설정한다.")] public int Score { get { return this.score; } set { this.score = value; } } |