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 单元格选中边框的主要内容,如果未能解决你的问题,请参考以下文章

datagridview 单击某个单元格选中一行

DataGridView控件中如何获取选中单元格内容?

C# 选中 DataGridView 控件中的行时显示不同的颜色

请问c# 的winform 怎么获取 datagridview选中的行数和列数啊

怎么让datagridview默认选中一行,系统默认的是选中第一行的第一个单元格。谢谢

C#winform中的 dataGridView 鼠标点行首时选中整行,点击单元格时 选中单元格,如图: