EventDescriptorCollection 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EventDescriptorCollection 클래스의 새 인스턴스를 초기화합니다.
오버로드
EventDescriptorCollection(EventDescriptor[]) |
EventDescriptorCollection 개체의 지정된 배열을 사용하여 EventDescriptor 클래스의 새 인스턴스를 초기화합니다. |
EventDescriptorCollection(EventDescriptor[], Boolean) |
EventDescriptorCollection 개체의 지정된 배열을 사용하여 EventDescriptor 클래스의 새 인스턴스를 초기화합니다. 컬렉션은 선택적으로 읽기 전용으로 만들 수 있습니다. |
EventDescriptorCollection(EventDescriptor[])
- Source:
- EventDescriptorCollection.cs
- Source:
- EventDescriptorCollection.cs
- Source:
- EventDescriptorCollection.cs
EventDescriptorCollection 개체의 지정된 배열을 사용하여 EventDescriptor 클래스의 새 인스턴스를 초기화합니다.
public:
EventDescriptorCollection(cli::array <System::ComponentModel::EventDescriptor ^> ^ events);
public EventDescriptorCollection (System.ComponentModel.EventDescriptor[] events);
public EventDescriptorCollection (System.ComponentModel.EventDescriptor[]? events);
new System.ComponentModel.EventDescriptorCollection : System.ComponentModel.EventDescriptor[] -> System.ComponentModel.EventDescriptorCollection
Public Sub New (events As EventDescriptor())
매개 변수
- events
- EventDescriptor[]
이 컬렉션의 이벤트를 제공하는 EventDescriptor 형식의 배열입니다.
예제
다음 코드 예제에서는 의 button1
이벤트를 사용하여 새 EventDescriptorCollection 클래스를 만듭니다. 양식에서 button1
인스턴스화해야 합니다.
EventDescriptorCollection^ events = TypeDescriptor::GetEvents( button1 );
EventDescriptorCollection events = TypeDescriptor.GetEvents(button1);
Dim events As EventDescriptorCollection = TypeDescriptor.GetEvents(button1)
설명
매개 변수가 events
비어 있으면 이 생성자는 빈 EventDescriptorCollection 클래스를 만듭니다.
이 멤버에 적용된 특성의 HostProtectionAttribute 속성 값Synchronization은 Resources 입니다. HostProtectionAttribute는 대개 아이콘을 두 번 클릭하거나, 명령을 입력하거나, 브라우저에서 URL을 입력하여 시작되는 데스크톱 애플리케이션에 영향을 미치지 않습니다. 자세한 내용은 참조는 HostProtectionAttribute 클래스 또는 SQL Server 프로그래밍 및 호스트 보호 특성합니다.
추가 정보
적용 대상
EventDescriptorCollection(EventDescriptor[], Boolean)
- Source:
- EventDescriptorCollection.cs
- Source:
- EventDescriptorCollection.cs
- Source:
- EventDescriptorCollection.cs
EventDescriptorCollection 개체의 지정된 배열을 사용하여 EventDescriptor 클래스의 새 인스턴스를 초기화합니다. 컬렉션은 선택적으로 읽기 전용으로 만들 수 있습니다.
public:
EventDescriptorCollection(cli::array <System::ComponentModel::EventDescriptor ^> ^ events, bool readOnly);
public EventDescriptorCollection (System.ComponentModel.EventDescriptor[] events, bool readOnly);
public EventDescriptorCollection (System.ComponentModel.EventDescriptor[]? events, bool readOnly);
new System.ComponentModel.EventDescriptorCollection : System.ComponentModel.EventDescriptor[] * bool -> System.ComponentModel.EventDescriptorCollection
Public Sub New (events As EventDescriptor(), readOnly As Boolean)
매개 변수
- events
- EventDescriptor[]
이 컬렉션의 이벤트를 제공하는 EventDescriptor 형식의 배열입니다.
- readOnly
- Boolean
컬렉션을 읽기 전용으로 지정하려면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 코드 예제에서는 의 button1
이벤트를 사용하여 새 EventDescriptorCollection 클래스를 만듭니다. 양식에서 button1
인스턴스화해야 합니다.
EventDescriptorCollection^ events = TypeDescriptor::GetEvents( button1 );
EventDescriptorCollection events = TypeDescriptor.GetEvents(button1);
Dim events As EventDescriptorCollection = TypeDescriptor.GetEvents(button1)
설명
매개 변수가 events
비어 있으면 이 생성자는 빈 EventDescriptorCollection 클래스를 만듭니다.
참고
합니다 HostProtectionAttribute 이 클래스에 적용 된 특성에는 다음과 같은 Resources 속성 값: Synchronization합니다. HostProtectionAttribute는 대개 아이콘을 두 번 클릭하거나, 명령을 입력하거나, 브라우저에서 URL을 입력하여 시작되는 데스크톱 애플리케이션에 영향을 미치지 않습니다. 자세한 내용은 참조는 HostProtectionAttribute 클래스 또는 SQL Server 프로그래밍 및 호스트 보호 특성합니다.
추가 정보
적용 대상
.NET