본문 바로가기
C#/DevExpress

DevExpress / Winform CheckEdit 컨트롤 추가하기.

by HyunS_ 2019. 4. 14.

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

댓글