DataGridViewButtonCell.Paint 方法

定義

繪製目前的 DataGridViewButtonCell

protected:
 override void Paint(System::Drawing::Graphics ^ graphics, System::Drawing::Rectangle clipBounds, System::Drawing::Rectangle cellBounds, int rowIndex, System::Windows::Forms::DataGridViewElementStates elementState, System::Object ^ value, System::Object ^ formattedValue, System::String ^ errorText, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, System::Windows::Forms::DataGridViewAdvancedBorderStyle ^ advancedBorderStyle, System::Windows::Forms::DataGridViewPaintParts paintParts);
protected override void Paint (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts);
protected override void Paint (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts);
override this.Paint : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle * int * System.Windows.Forms.DataGridViewElementStates * obj * obj * string * System.Windows.Forms.DataGridViewCellStyle * System.Windows.Forms.DataGridViewAdvancedBorderStyle * System.Windows.Forms.DataGridViewPaintParts -> unit
Protected Overrides Sub Paint (graphics As Graphics, clipBounds As Rectangle, cellBounds As Rectangle, rowIndex As Integer, elementState As DataGridViewElementStates, value As Object, formattedValue As Object, errorText As String, cellStyle As DataGridViewCellStyle, advancedBorderStyle As DataGridViewAdvancedBorderStyle, paintParts As DataGridViewPaintParts)

參數

graphics
Graphics

用於繪製儲存格的 Graphics

clipBounds
Rectangle

Rectangle,代表需要重新繪製的 DataGridView 區域。

cellBounds
Rectangle

Rectangle,其中包含所繪製之儲存格的界限。

rowIndex
Int32

正在繪製的儲存格資料列索引。

elementState
DataGridViewElementStates

DataGridViewElementStates 值的位元組合,指定儲存格的狀態。

value
Object

儲存格的資料,該儲存格正在進行繪製。

formattedValue
Object

儲存格的已格式化資料,該儲存格正在進行繪製。

errorText
String

與儲存格關聯的錯誤訊息。

cellStyle
DataGridViewCellStyle

DataGridViewCellStyle,其中包含有關儲存格的格式化和樣式資訊。

advancedBorderStyle
DataGridViewAdvancedBorderStyle

DataGridViewAdvancedBorderStyle,包含正在繪製之儲存格的邊框樣式。

paintParts
DataGridViewPaintParts

DataGridViewPaintParts 值的位元組合,指定儲存格需要繪製的部分。

適用於