BindingSource 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
BindingSource 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| BindingSource() |
클래스의 새 인스턴스를 BindingSource 기본 속성 값으로 초기화합니다. |
| BindingSource(IContainer) |
클래스의 새 인스턴스를 BindingSource 초기화하고 지정된 컨테이너에 추가합니다 BindingSource . |
| BindingSource(Object, String) |
지정된 데이터 원본 및 데이터 멤버를 BindingSource 사용하여 클래스의 새 인스턴스를 초기화합니다. |
BindingSource()
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
클래스의 새 인스턴스를 BindingSource 기본 속성 값으로 초기화합니다.
public:
BindingSource();
public BindingSource();
Public Sub New ()
설명
다음 표에서는 이 생성자가 초기화한 기본 BindingSource 속성 값을 보여줍니다.
| 재산 | 기본값 |
|---|---|
| DataSource | null |
| DataMember | Empty |
| Sort | null |
| Filter | null |
| RaiseListChangedEvents | true |
추가 정보
적용 대상
BindingSource(IContainer)
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
클래스의 새 인스턴스를 BindingSource 초기화하고 지정된 컨테이너에 추가합니다 BindingSource .
public:
BindingSource(System::ComponentModel::IContainer ^ container);
public BindingSource(System.ComponentModel.IContainer container);
new System.Windows.Forms.BindingSource : System.ComponentModel.IContainer -> System.Windows.Forms.BindingSource
Public Sub New (container As IContainer)
매개 변수
- container
- IContainer
IContainer 현재 BindingSource 항목을 추가할 수 있습니다.
설명
이 생성자는 매개 변수가 없는 생성자를 호출한 다음 지정된 컨테이너에 현재 BindingSource 를 추가합니다. 일반적으로 솔루션 프로그래머가 사용하는 것이 아니라 디자인 타임 환경의 작성자가 사용합니다.
적용 대상
BindingSource(Object, String)
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
- Source:
- BindingSource.cs
지정된 데이터 원본 및 데이터 멤버를 BindingSource 사용하여 클래스의 새 인스턴스를 초기화합니다.
public:
BindingSource(System::Object ^ dataSource, System::String ^ dataMember);
public BindingSource(object dataSource, string dataMember);
public BindingSource(object? dataSource, string dataMember);
new System.Windows.Forms.BindingSource : obj * string -> System.Windows.Forms.BindingSource
Public Sub New (dataSource As Object, dataMember As String)
매개 변수
- dataSource
- Object
에 대한 데이터 원본입니다 BindingSource.
- dataMember
- String
바인딩할 데이터 원본 내의 특정 열 또는 목록 이름입니다.