다음을 통해 공유


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

적용 대상

추가 정보