摘要: 习惯了Web中的RowDataBound,写起Winform来发现找不到RowDataBound事件,郁闷,winform中的datagridview事件非常丰富~~ ,找了大半天才找到个能用的事件 private void dataGridView1_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs... 阅读全文
posted @ 2008-12-11 09:40 Shannon 阅读(1523) 评论(1) 推荐(0) 编辑
摘要: 最近手工添加N条记录到Dataset后,需要从Dataset删除某条数据 private void dataGridView2_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex != -1) { ... 阅读全文
posted @ 2008-12-11 08:42 Shannon 阅读(787) 评论(0) 推荐(0) 编辑