Udostępnij za pośrednictwem


DataGridDesigner.Initialize(IComponent) Metoda

Definicja

Inicjuje projektanta za pomocą określonej DataGrid kontrolki.

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)

Parametry

component
IComponent

Projektowany element sterujący.

Przykłady

Poniższy przykład kodu pokazuje, jak zastąpić metodę Initialize , aby upewnić się, że projektant jest inicjowany tylko z wystąpieniami SimpleDataGrid klasy.

Ten przykład kodu jest częścią większego przykładu udostępnionego DataGridDesigner dla klasy .

' 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

Dotyczy

Zobacz też