datagridview 的Columns 点击列标题 禁止排序

比如要使cloumn【0】禁止列排序               
this.dataGridViewLED.Columns.SortMode = DataGridViewColumnSortMode.NotSortable;

 

 

//禁止每一列点击标题排序
for(inti=0;i<dataGridView1.Columns.Count;i++)
{
dataGridView1.Columns[i].SortMode=DataGridViewColumnSortMode.NotSortable;
}

 

//防止点击列标题时出现e.rowIndex=-1报错

if(e.rowIndex==-1)

{

return;

}

posted @ 2012-07-16 16:14  zhcnblog  阅读(2020)  评论(0编辑  收藏  举报