1 /// <summary> 2 /// 所有单元格绘制后,执行 行绘制时发生 3 /// </summary> 4 /// <param></param> 5 /// <param></param> 6 private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) 7 { 8 // 9 System.Drawing.Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Y, this.dataGridView1.RowHeadersWidth - 4, this.dataGridView1.ColumnHeadersHeight); 10 TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1).ToString(), this.dataGridView1.RowHeadersDefaultCellStyle.Font, rectangle, this.dataGridView1.RowHeadersDefaultCellStyle.ForeColor, TextFormatFlags.VerticalCenter | TextFormatFlags.Right);//”TextFormatFlags.VerticalCenter | TextFormatFlags.Right“中“|”有增加的作用,此处添加了两种文本字符格式样式 11 }
,相关文章
- Winform Timer用法,Invoke在Timer的事件中更新控件状态
- 在WinForm中使用委托来在其他线程中改变控件的显示
- Winform中使用WPF控件并动态读取Xaml
- DataGridView中实现checkbox全选的自定义控件
- winform 自定义分页控件 及DataGridview数据绑定
- 【接上一篇】winform中dataGridView高度和宽度自适应填充完数据的高度和宽度,即dataGridView根据数据自适应大小
- C# WinForm中自定义了一个控件,在Form中放了一个button,如何实现按下button之后,让自定义的控件响应?
- 在Winform窗体中使用WPF控件(附源码)
- .NET WinForm程序中给DataGridView表头添加下拉列表实现数据过滤
- 【原】WinForm中的DataGridView加入Combbox或者DropDownButton后,操作变慢