DataGridView.PaintBackground(Graphics, Rectangle, Rectangle) 方法

定义

绘制 DataGridView 的背景。

protected:
 virtual void PaintBackground(System::Drawing::Graphics ^ graphics, System::Drawing::Rectangle clipBounds, System::Drawing::Rectangle gridBounds);
protected virtual void PaintBackground (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle gridBounds);
override this.PaintBackground : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle -> unit
abstract member PaintBackground : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle -> unit
override this.PaintBackground : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle -> unit
Protected Overridable Sub PaintBackground (graphics As Graphics, clipBounds As Rectangle, gridBounds As Rectangle)

参数

graphics
Graphics

用于绘制背景的 Graphics

clipBounds
Rectangle

Rectangle,它表示需要绘制的 DataGridView 区域。

gridBounds
Rectangle

一个 Rectangle,表示绘制单元格的区域。

注解

参数 clipBounds 表示需要重新绘制的 DataGridView 的区域。 例如,如果用户用另一个窗口覆盖整个 DataGridView ,然后打开它,则 clipBounds 表示整个 DataGridView。 如果用户覆盖了 的 DataGridView 一小块区域,然后将其揭开,则 clipBounds 表示所覆盖的小区域。

适用于

另请参阅