英語で読む

次の方法で共有


ISupportInitialize インターフェイス

定義

初期化をバッチ処理するための単純な処理通知をオブジェクトがサポートすることを指定します。

public interface ISupportInitialize
派生

次のコード例では、 インターフェイスを使用 ISupportInitialize して 3 つの TrackBar コントロールを初期化する方法を示します。

((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar3)).BeginInit();
this.SuspendLayout();
// 
// trackBar1
// 
this.trackBar1.Location = new System.Drawing.Point(160, 400);
this.trackBar1.Name = "trackBar1";
this.trackBar1.TabIndex = 1;
this.trackBar1.Scroll += new System.EventHandler(this.trackBar_Scroll);
// 
// trackBar2
// 
this.trackBar2.Location = new System.Drawing.Point(608, 40);
this.trackBar2.Name = "trackBar2";
this.trackBar2.TabIndex = 2;
this.trackBar2.Scroll += new System.EventHandler(this.trackBar_Scroll);
// 
// trackBar3
// 
this.trackBar3.Location = new System.Drawing.Point(56, 40);
this.trackBar3.Name = "trackBar3";
this.trackBar3.TabIndex = 3;
this.trackBar3.Scroll += new System.EventHandler(this.trackBar_Scroll);
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar3)).EndInit();

注釈

ISupportInitialize では、コントロールで複数のプロパティの割り当てを最適化できます。 その結果、共同依存プロパティを初期化したり、デザイン時に複数のプロパティをバッチ セットしたりできます。

初期化が BeginInit 開始されていることをオブジェクトに通知するには、 メソッドを呼び出します。 初期化が EndInit 完了したことを通知するには、 メソッドを呼び出します。

メソッド

BeginInit()

初期化の開始を通知するシグナルをオブジェクトに送信します。

EndInit()

初期化の完了を通知するシグナルをオブジェクトに送信します。

適用対象

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

こちらもご覧ください