10/12/2009

Data Grid View를 이용해 Row 삽입하기

간단하게 데이터를 정렬하고 싶어서 DataGridView 에 사용자 정의 행(row)를 추가해보았다.
열(column)의 수에 맞게 object 배열을 만들어 주고 Add method를 사용하면 완료.

DataGridViewRowCollection rowCollection = dataGridView1.Rows;
rowCollection.Add(new object[] { "string", 1, true, null });








추가적으로 계속 add method를 사용하면 아래에 추가된다 >_<

참고 :
http://msdn.microsoft.com/ko-kr/library/system.windows.forms.datagridviewrowcollection_methods.aspx

댓글 없음:

댓글 쓰기