我想实现这样的一个功能,在单击datagridview控件列标头排序时,如果在一个区域就不排序,其它地则正常排
privatevoidDataGridView1_ColumnHeaderMouseClick(objectsender,DataGridViewCellMouseEve...
private void DataGridView1_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
DataGridViewHeaderCell h = this.Columns[e.ColumnIndex].HeaderCell;
Rectangle rec = h.ContentBounds;
rec.Width = 20;
if (rec.Contains(e.Location))
{
?????
// MessageBox.Show("不排序");
return;
}
}
这是我的一部分代码。如何实现这样功能,请大神指导,或者其它实现方法也可以。或者也排序,但排序后的结果和先前一样没变,就是单击这区域,没有看到变化,就可以了。 展开
{
DataGridViewHeaderCell h = this.Columns[e.ColumnIndex].HeaderCell;
Rectangle rec = h.ContentBounds;
rec.Width = 20;
if (rec.Contains(e.Location))
{
?????
// MessageBox.Show("不排序");
return;
}
}
这是我的一部分代码。如何实现这样功能,请大神指导,或者其它实现方法也可以。或者也排序,但排序后的结果和先前一样没变,就是单击这区域,没有看到变化,就可以了。 展开
展开全部
重载单击函数
protected override void OnColumnHeaderMouseClick(DataGridViewCellMouseEventArgs e)
{
try
{
DataGridViewHeaderCell h = this.Columns[e.ColumnIndex].HeaderCell;
Rectangle rec = h.ContentBounds;
rec.Width = 25;
if (rec.Contains(e.Location))
{
return;
}
base.OnColumnHeaderMouseClick(e);
}
catch
{
}
}
protected override void OnColumnHeaderMouseClick(DataGridViewCellMouseEventArgs e)
{
try
{
DataGridViewHeaderCell h = this.Columns[e.ColumnIndex].HeaderCell;
Rectangle rec = h.ContentBounds;
rec.Width = 25;
if (rec.Contains(e.Location))
{
return;
}
base.OnColumnHeaderMouseClick(e);
}
catch
{
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询