首页 > 代码库 > c# 消除datagridview 单元格选中边框
c# 消除datagridview 单元格选中边框
通过CellPaint事件解决单元格选中边框问题。
public void PaintBackground (
Rectangle clipBounds,
bool cellsPaintSelectionBackground
)
参数:
clipBounds
一个指定要绘制的 DataGridView 区域的 Rectangle。
cellsPaintSelectionBackground
true 用于使用 DataGridViewCell.InheritedStyle 的 SelectionBackColor 属性的颜色绘制指定边界的背景;false 用于使用 DataGridViewCell.InheritedStyle 的 BackColor 属性的颜色绘制指定边界的背景。
public void PaintContent (
Rectangle clipBounds
)
参数
clipBounds
一个指定要绘制的 DataGridView 区域的 Rectangle。
添加DataGridView的CellPaint事件,代码如下:
private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
e.Handled = true;
e.PaintBackground(e.CellBounds, true);
e.PaintContent(e.CellBounds);
}
本文出自 “小森工作室” 博客,请务必保留此出处http://898779.blog.51cto.com/888779/1878835
c# 消除datagridview 单元格选中边框