摘要:
dataGridView1.RowHeadersVisible = false;把整行选中那一列去掉。如果需要整行选中,新增一按钮列模拟实现。上源码:多维DataGridView有个简易的方法:1,继承DataGridView,添加表头信息类。 2,添加CellPainting,代码如下:privatevoidDataGridViewEx_CellPainting(objectsender,DataGridViewCellPaintingEventArgse){if(e.RowIndex==-1){//intw=dataGridView1.HorizontalScrollingOffset+d 阅读全文