ScrollableControl.OnPaintBackground(PaintEventArgs) メソッド

定義

コントロールの背景を描画します。

protected:
 override void OnPaintBackground(System::Windows::Forms::PaintEventArgs ^ e);
protected override void OnPaintBackground (System.Windows.Forms.PaintEventArgs e);
override this.OnPaintBackground : System.Windows.Forms.PaintEventArgs -> unit
Protected Overrides Sub OnPaintBackground (e As PaintEventArgs)

パラメーター

e
PaintEventArgs

イベントのデータ。

例外

.NET 5 以降のバージョンのみ: e です null

注釈

イベントを発生させると、イベント ハンドラーがデリゲートから呼び出されます。 詳細については、処理とイベントの発生 を参照してください。

OnPaintBackground メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。 派生クラスでイベントを処理する場合は、この手法をお勧めします。

注意 (継承者)

派生クラスでオーバーライドする OnPaintBackground(PaintEventArgs) 場合は、登録されているデリゲートがイベントを受け取るように、基底クラスの OnPaintBackground(PaintEventArgs) メソッドを必ず呼び出してください。

適用対象