DataGridViewRowPrePaintEventArgs.PaintCellsBackground 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为指定边界中的区域绘制单元格背景。
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
用于使用 SelectionBackColor 的 InheritedStyle 属性的颜色绘制指定边界的背景;false
用于使用 BackColor 的 InheritedStyle 属性的颜色绘制指定边界的背景。
例外
RowIndex 小于零或大于将 DataGridView 控件中的行数减一得到的值。
注解
PaintCellsBackground自行绘制 DataGridViewRow 及其单元格的内容时,请使用 方法。 如果手动绘制整行及其单元格的内容,请将 HandledEventArgs.Handled 属性设置为 true
。 当 为 true
时HandledEventArgs.Handled,CellPainting不会发生 和 RowPostPaint 事件。