次の方法で共有


DataGridDesigner.Initialize(IComponent) メソッド

定義

指定した DataGrid コントロールを使用してデザイナーを初期化します。

public:
 override void Initialize(System::ComponentModel::IComponent ^ component);
public override void Initialize (System.ComponentModel.IComponent component);
override this.Initialize : System.ComponentModel.IComponent -> unit
Public Overrides Sub Initialize (component As IComponent)

パラメーター

component
IComponent

デザイン対象のコントロール要素。

次のコード例は、 メソッドを Initialize オーバーライドして、デザイナーが クラスのインスタンスでのみ初期化されるようにする方法を SimpleDataGrid 示しています。

このコード例は、DataGridDesigner クラスのために提供されている大規模な例の一部です。

' Override the Initialize method to ensure that
' only an instance of the SimpleDataList class is
' used by this designer class.
Public Overrides Sub Initialize(ByVal component As IComponent)
    simpleList = CType(component, SimpleDataList)

    If IsNothing(simpleList) Then
        Throw New ArgumentException("Must be a SimpleDataList.", "component")
    End If

    MyBase.Initialize(component)
End Sub

適用対象

こちらもご覧ください