public partial class TestCheckBoxInGridView : Form { public TestCheckBoxInGridView() { InitializeComponent(); } private void TestCheckBoxInGridView_Load(object sender, EventArgs e) { this.dataGridView.Rows.Add(false, "test1"); this.dataGridView.Rows.Add(false, "test2"); } private void button_check_Click(object sender, EventArgs e) { StringBuilder sb = new StringBuilder(); sb.Append("체크된 항목 : \r\n"); for(int i=0;i<this.dataGridView.Rows.Count;i++) { DataGridViewRow dr = this.dataGridView.Rows[i]; bool state = (bool)dr.Cells[0].Value; if (state == true) { sb.AppendLine(dr.Cells[1].Value.ToString()); } } MessageBox.Show(sb.ToString()); } }
'.Net > Winform' 카테고리의 다른 글
C# Winform MDI(다중 문서 인터페이스)로 Form 띄우기 (0) | 2012.10.25 |
---|---|
C# RichTextBox 인쇄 할 때 Font 반영 (0) | 2012.10.10 |
C# Resource를 이용하여 프로그램에 이미지 포함하기 (0) | 2012.09.21 |
C# 투명한 Panel 띄우기 (2) | 2012.09.17 |
C# Winform에서 DaumAPI 사용하기[3]_JavaScript CallBack 구현 (0) | 2012.09.14 |