다음을 통해 공유


Container.Add 메서드

정의

Container Component 추가합니다.

오버로드

Add(IComponent)

지정된 ComponentContainer추가합니다. 구성 요소가 명명되지 않은 경우

Add(IComponent, String)

지정된 ComponentContainer 추가하고 이름을 할당합니다.

Add(IComponent)

Source:
Container.cs
Source:
Container.cs
Source:
Container.cs

지정된 ComponentContainer추가합니다. 구성 요소가 명명되지 않은 경우

public:
 virtual void Add(System::ComponentModel::IComponent ^ component);
public virtual void Add (System.ComponentModel.IComponent component);
public virtual void Add (System.ComponentModel.IComponent? component);
abstract member Add : System.ComponentModel.IComponent -> unit
override this.Add : System.ComponentModel.IComponent -> unit
Public Overridable Sub Add (component As IComponent)

매개 변수

component
IComponent

추가할 구성 요소입니다.

구현

예외

component null.

설명

이 메서드는 파생 클래스에서 재정의할 수 있습니다.

Component 목록의 끝에 추가됩니다.

추가 정보

적용 대상

Add(IComponent, String)

Source:
Container.cs
Source:
Container.cs
Source:
Container.cs

지정된 ComponentContainer 추가하고 이름을 할당합니다.

public:
 virtual void Add(System::ComponentModel::IComponent ^ component, System::String ^ name);
public virtual void Add (System.ComponentModel.IComponent component, string name);
public virtual void Add (System.ComponentModel.IComponent? component, string? name);
abstract member Add : System.ComponentModel.IComponent * string -> unit
override this.Add : System.ComponentModel.IComponent * string -> unit
Public Overridable Sub Add (component As IComponent, name As String)

매개 변수

component
IComponent

추가할 구성 요소입니다.

name
String

구성 요소에 할당할 대/소문자를 구분하지 않는 고유한 이름입니다.

-또는-

null- 구성 요소를 명명되지 않은 것으로 남깁니다.

구현

예외

component null.

name 고유하지 않습니다.

설명

이 메서드는 파생 클래스에서 재정의할 수 있습니다.

Component 목록의 끝에 추가됩니다.

추가 정보

적용 대상