[winform] Tip 관련 본문

카테고리 없음

[winform] Tip 관련

객과 함께. 2012. 2. 6. 21:41

1. DataGridView를 클릭 했을때 해당 Row의 값을 텍스트나 라벨에 나타내고 싶을때는 해당 Row 의 인덱스값을 이용한다.

ex) age = dataGridView1.Rows[e.RowIndex].Cell[Index].formattedVale.ToString();

 

2. DataGridView의 헤드를 클릭했을때

if(e.RowIndex < 0) return;

 

3. PicturaBox 의 이미지를 초기화 시킬때

   PictureBox1.Image = null;