winform中dataGridview中如何实现当点击其中某一列标题中鼠标改变形状,需要一个什么事件,最好可以给出代码希望各位大侠不吝指教!谢谢!
可以在CellClick事件中写改变鼠标样式可以参考http://blog.csdn.net/dotnet_2008/archive/2010/05/21/5613452.aspx具体的实现没有做过 不过你可以试一试
在OnRowCreated事件中写;
e.Row.Cells[5].Attributes["style"] = "Cursor:hand";试试