DataGridViewRowPrePaintEventArgs.PaintCellsBackground 方法

定义

为指定边界中的区域绘制单元格背景。

public:
 void PaintCellsBackground(System::Drawing::Rectangle clipBounds, bool cellsPaintSelectionBackground);
public void PaintCellsBackground (System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground);
member this.PaintCellsBackground : System.Drawing.Rectangle * bool -> unit
Public Sub PaintCellsBackground (clipBounds As Rectangle, cellsPaintSelectionBackground As Boolean)

参数

clipBounds
Rectangle

一个指定要绘制的 Rectangle 区域的 DataGridView

cellsPaintSelectionBackground
Boolean

true 用于使用 SelectionBackColorInheritedStyle 属性的颜色绘制指定边界的背景;false 用于使用 BackColorInheritedStyle 属性的颜色绘制指定边界的背景。

例外

RowIndex 小于零或大于将 DataGridView 控件中的行数减一得到的值。

注解

PaintCellsBackground自行绘制 DataGridViewRow 及其单元格的内容时,请使用 方法。 如果手动绘制整行及其单元格的内容,请将 HandledEventArgs.Handled 属性设置为 true。 当 为 trueHandledEventArgs.HandledCellPainting不会发生 和 RowPostPaint 事件。

适用于

另请参阅