DataGridViewRow.DrawFocus 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在指定的界限四周繪製焦點矩形 (Focus Rectangle)。
protected public:
virtual void DrawFocus(System::Drawing::Graphics ^ graphics, System::Drawing::Rectangle clipBounds, System::Drawing::Rectangle bounds, int rowIndex, System::Windows::Forms::DataGridViewElementStates rowState, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, bool cellsPaintSelectionBackground);
protected internal virtual void DrawFocus (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool cellsPaintSelectionBackground);
abstract member DrawFocus : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle * int * System.Windows.Forms.DataGridViewElementStates * System.Windows.Forms.DataGridViewCellStyle * bool -> unit
override this.DrawFocus : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle * int * System.Windows.Forms.DataGridViewElementStates * System.Windows.Forms.DataGridViewCellStyle * bool -> unit
Protected Friend Overridable Sub DrawFocus (graphics As Graphics, clipBounds As Rectangle, bounds As Rectangle, rowIndex As Integer, rowState As DataGridViewElementStates, cellStyle As DataGridViewCellStyle, cellsPaintSelectionBackground As Boolean)
參數
- graphics
- Graphics
用來繪製 DataGridViewRow 的 Graphics。
- clipBounds
- Rectangle
Rectangle,表示需要繪製的 DataGridView 區域。
- bounds
- Rectangle
Rectangle,包含要繪製 DataGridViewRow 的界限。
- rowIndex
- Int32
正在繪製的儲存格資料列索引。
- rowState
- DataGridViewElementStates
DataGridViewElementStates 值的位元組合,指定資料列的狀態。
- cellStyle
- DataGridViewCellStyle
繪製焦點矩形所用的 DataGridViewCellStyle。
- cellsPaintSelectionBackground
- Boolean
true
表示要使用 cellStyle
的 SelectionBackColor 屬性做為焦點矩形的色彩;false
則表示要使用 cellStyle
的 BackColor 屬性做為焦點矩形的色彩。
例外狀況
資料列未加入至 DataGridView 控制項。
備註
參數 rowIndex
不會用於 方法的 DrawFocus 基類實作中,不過在衍生類別中覆寫此方法時可以使用此參數。