Winform 의 CheckBox를 DevExpress 에서는 CheckEdit라고 하는데
CheckEdit를 추가하는 방법 입니다.
또한 마우스 클릭 이벤트로 체크 일때와 언체크 일때 콘솔을 출력하도록 하였습니다.
private void CreateCheckEdit()
{
CheckEdit checkEdit1 = new CheckEdit();
checkEdit1.Properties.Caption = "Hide Button";
checkEdit1.Name = "checkEdit1";
checkEdit1.Location = new System.Drawing.Point(35,100);
checkEdit1.Width = 100;
checkEdit1.MouseDown += checkEdit1_MouseDown;
this.Controls.Add(checkEdit1);
}
private void CheckEdit5_MouseDown(object sender, MouseEventArgs e)
{
CheckEdit checkEdit = sender as CheckEdit;
switch (checkEdit.CheckState)
{
case CheckState.Checked:
Console.WriteLine( "체크 입니다." );
break;
case CheckState.Unchecked:
Console.WriteLine( "언체크 입니다." );
break;
}
}
728x90
'C# > DevExpress' 카테고리의 다른 글
DevExpress / Winform LookUpEdit 컨트롤 추가하기. (0) | 2019.04.15 |
---|---|
DevExpress / Winform CheckEdit 컨트롤에서 Indeterminate 값 추가하기. (0) | 2019.04.14 |
DevExpress / Winform GridView에서 특정 컬럼의 출력 내용을 변경하기(컬럼 FormatType 설정). (0) | 2019.04.12 |
DevExpress / Winform GridView에서 특정 컬럼의 출력 내용을 변경하기(이벤트 사용). (2) | 2019.04.12 |
DevExpress / Winform GridControl의 컬럼의 헤더 이름 변경하기. (0) | 2019.04.10 |
댓글