2013-01-04 222 views

回答

8

選擇DataGridView後,在Visual Studio中檢查屬性窗口。您會注意到一個名爲SelectionMode的屬性。將其設置爲FullRowSelect

+0

非常感謝!這是完美的 ! –

2
this.DataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; 
this.DataGridView.Columns["Text"].ReadOnly = true; 

DataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect指個體細胞不能被選擇。

DataGridViewColumn.ReadOnly = true表示單元格不能被雙擊進去。

+0

非常感謝!這是完美的 !! –

相關問題