본문 바로가기
C# Windows Form 개발 따라하기

[005] CheckBox, RadioButton (Windows Form C#)

by bryan.oh 2019. 1. 18.
반응형

Windows Form C#

CheckBox , RadioButton

 

Visual Studio 의 Form Designer 에서 [도구상자] 의 CheckBox 와 RadioButton 을 Form 에 추가합니다.

 

 

체크박스와 라디오 버튼의 속성은 거의 비슷합니다. 

다른점은 체크박스는 개별로 체크/해제를 할 수 있습니다.

라디오버튼은 GroupBox 또는 Panel 등 그룹안에 있는 라디오버튼 중 하나만 체크 될 수 있다는 겁니다.

주요 속성

checkBox1.Text = "auto run";    // set checkbox text
checkBox1.Checked = true;       // set checkbox checked
checkBox1.Enabled = true;       // control enable , disable
checkBox1.Visible = true;       // set visible

radioButton1.Text = "radio text";
radioButton1.Checked = true;
radioButton1.Enabled = true;
radioButton1.Visible = true;
 

 

이벤트추가 

checkBox1.CheckedChanged += CheckBox1_CheckedChanged;
 

 

이벤트 메소드 정의

private void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
    CheckBox checkBox = (CheckBox)sender;
    if (checkBox.Checked)
        MessageBox.Show("체크");
    else
        MessageBox.Show("해제");
}
 

 

 

 

2019/01/17 - [C# Windows Form 개발 따라하기] - [003] 모든 개발의 시작. hello world !

2019/01/18 - [C# Windows Form 개발 따라하기] - [004]ComboBox . Windows Form 에서 ComboBox 사용하기 (Dropdown, selectbox)

 

728x90
반응형

댓글