有关dataGridView的行和列标题的问题

时间:2011-09-13 10:21:03

标签: c# winforms

关于行标题:

1)我可以在上面写文字吗?

2)我可以改变颜色,使它们与其他所有细胞颜色不同吗?

3)当我点击它们离开时,我可以制作这个箭头吗?

关于列标题:

4)我可以改变颜色吗?

提前致谢。

1 个答案:

答案 0 :(得分:2)

回答3)

处理CellPainting事件:

dataGridView.CellPainting += 
     new DataGridViewCellPaintingEventHandler (dataGridView_CellPainting);

然后对于处理程序,只响应{-1}的“-1”(表示行标题):

ColumnIndex