c# 消除datagridview 单元格选中边框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 单元格选中边框的主要内容,如果未能解决你的问题,请参考以下文章
C# 选中 DataGridView 控件中的行时显示不同的颜色
请问c# 的winform 怎么获取 datagridview选中的行数和列数啊