機房重構中,我們都用到了datagridview控制項,我分享一下我用這個控制項的收穫。
1、設定datagridview的屬性selectionmode為fullrowselect,這樣就使datagridview不是選擇乙個字段,而是選擇一整行了。
2、設定datagridview的屬性multiselect為false,這樣就使datagridview不能夠選擇多行,只能選擇一行了。
this.datagridview.selectedrows[0].cells[0].value.tostring();//獲取選中行的第一列的值
datagridview1.columns[0].headertext = "學號";//為第一列新增標題。
datagridview.source=table;
while (this.datagridview.rows.count != 0)
datagridview.datasource= null;//不過這樣也會將標題欄也刪掉。
C dataGridView右鍵選單
private void datagridview1 cellmousedown object sender,datagridviewcellmouseeventargs e 在datagridview中的currentrow屬性為唯讀,且其index也不能動態設定,故只能在datagridview...
C dataGridView字型顯示設定
1.設定datagridview中資料的顯示風格,需要設定defaultcellstyle裡面的selectionbackcolor還有font 字型設定 設定某行的字型顏色 datagridview1.rows i defaultcellstyle.forecolor color.red 2.設定...
C dataGridView控制項相關操作
c datagridview控制項在屬性中無法在左上角新增文字 可在窗體程式中新增 this.datagridview.topleftheadercell.value 序號 this.datagridview.rowtemplate.height 28 改變行的高度 由於每行表頭有箭頭顯示,文字間可...