개발 노트

c# 콤보박스 값추가 본문

카테고리 없음

c# 콤보박스 값추가

알 수 없는 사용자 2022. 4. 14. 11:18
private void Form1_Load(object sender, EventArgs e) { comboBox2.Items.Add("회사원"); comboBox2.Items.Add("공무원"); comboBox2.Items.Add("학생"); comboBox2.Items.Add("군인"); comboBox2.Items.Add("주부"); }

private void Form1_Load(object sender, EventArgs e) { comboBox2.Items.Add("회사원"); comboBox2.Items.Add("공무원"); comboBox2.Items.Add("학생"); comboBox2.Items.Add("군인"); comboBox2.Items.Add("주부"); }