摘要: datagridview很好用,但样子太差了。其它还好说,就是标题,不好弄。鼓捣了半天,终于搞定,先记下来,省得忘了。。private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex == -1) { int X = e.CellBounds.X; int Y = e.CellBounds.Y; ... 阅读全文
posted @ 2012-05-11 15:08 项工 阅读(1335) 评论(0) 推荐(0)