DataGridViewRow.PaintHeader 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
繪製目前資料列的行首儲存格。
protected public:
virtual void PaintHeader(System::Drawing::Graphics ^ graphics, System::Drawing::Rectangle clipBounds, System::Drawing::Rectangle rowBounds, int rowIndex, System::Windows::Forms::DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System::Windows::Forms::DataGridViewPaintParts paintParts);
protected internal virtual void PaintHeader (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System.Windows.Forms.DataGridViewPaintParts paintParts);
abstract member PaintHeader : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle * int * System.Windows.Forms.DataGridViewElementStates * bool * bool * System.Windows.Forms.DataGridViewPaintParts -> unit
override this.PaintHeader : System.Drawing.Graphics * System.Drawing.Rectangle * System.Drawing.Rectangle * int * System.Windows.Forms.DataGridViewElementStates * bool * bool * System.Windows.Forms.DataGridViewPaintParts -> unit
Protected Friend Overridable Sub PaintHeader (graphics As Graphics, clipBounds As Rectangle, rowBounds As Rectangle, rowIndex As Integer, rowState As DataGridViewElementStates, isFirstDisplayedRow As Boolean, isLastVisibleRow As Boolean, paintParts As DataGridViewPaintParts)
參數
- graphics
- Graphics
用來繪製 DataGridViewRow 的 Graphics。
- clipBounds
- Rectangle
Rectangle,表示需要繪製的 DataGridView 區域。
- rowBounds
- Rectangle
Rectangle,包含要繪製 DataGridViewRow 的界限。
- rowIndex
- Int32
正在繪製的儲存格資料列索引。
- rowState
- DataGridViewElementStates
DataGridViewElementStates 值的位元組合,指定資料列的狀態。
- isFirstDisplayedRow
- Boolean
若要指出目前資料列是 DataGridView 中所顯示的第一個資料列,則為 true
,否則為 false
。
- isLastVisibleRow
- Boolean
true
表示目前的資料列為將 DataGridView 屬性設為 true
之 Visible 中的最後一個資料列,否則為 false
。
- paintParts
- DataGridViewPaintParts
DataGridViewPaintParts 值的位元組合,指出要繪製的儲存格。
例外狀況
資料列未加入至 DataGridView 控制項。
paintParts
不是 DataGridViewPaintParts 值的有效位元組合。
備註
控制項 DataGridView 會呼叫這個方法來繪製資料列標頭,但事件處理常式 DataGridView.RowPrePaint 將 屬性設定 HandledEventArgs.Handled 為 true
時除外。 如需詳細資訊,請參閱Paint。