다음을 통해 공유


BaseDataListDesigner.GetDesignTimeDataSource 메서드

정의

디자인 타임에 데이터 소스로 사용할 수 있는 개체를 생성합니다.

오버로드

GetDesignTimeDataSource(Int32, Boolean)

디자인 타임에 데이터 소스로 사용할 수 있는 개체를 생성합니다.

GetDesignTimeDataSource(IEnumerable, Int32, Boolean)

디자인 타임에 데이터 소스로 사용할 수 있는 개체를 생성합니다.

GetDesignTimeDataSource(Int32, Boolean)

디자인 타임에 데이터 소스로 사용할 수 있는 개체를 생성합니다.

protected:
 System::Collections::IEnumerable ^ GetDesignTimeDataSource(int minimumRows, [Runtime::InteropServices::Out] bool % dummyDataSource);
protected System.Collections.IEnumerable GetDesignTimeDataSource (int minimumRows, out bool dummyDataSource);
member this.GetDesignTimeDataSource : int * bool -> System.Collections.IEnumerable
Protected Function GetDesignTimeDataSource (minimumRows As Integer, ByRef dummyDataSource As Boolean) As IEnumerable

매개 변수

minimumRows
Int32

데이터 소스에 포함할 샘플 데이터의 최소 행 수입니다.

dummyDataSource
Boolean

반환된 데이터 소스에 더미 데이터가 들어 있으면 true이고, 반환된 데이터 소스에 실제 데이터 소스의 데이터가 들어 있으면 false입니다.

반환

IEnumerable

디자인 타임에 사용할 데이터 소스 역할을 하는 IEnumerable 인터페이스를 구현하는 개체입니다.

설명

BaseDataListDesigner.GetDesignTimeDataSource메서드는 DataTable 및 속성으로 정의 된 데이터 소스에서 개체를 생성 하려고 합니다 DataSource DataMember . 가능 하지 않은 경우 DataTable 더미 데이터에서를 만듭니다.

추가 정보

적용 대상

GetDesignTimeDataSource(IEnumerable, Int32, Boolean)

디자인 타임에 데이터 소스로 사용할 수 있는 개체를 생성합니다.

protected:
 System::Collections::IEnumerable ^ GetDesignTimeDataSource(System::Collections::IEnumerable ^ selectedDataSource, int minimumRows, [Runtime::InteropServices::Out] bool % dummyDataSource);
protected System.Collections.IEnumerable GetDesignTimeDataSource (System.Collections.IEnumerable selectedDataSource, int minimumRows, out bool dummyDataSource);
member this.GetDesignTimeDataSource : System.Collections.IEnumerable * int * bool -> System.Collections.IEnumerable
Protected Function GetDesignTimeDataSource (selectedDataSource As IEnumerable, minimumRows As Integer, ByRef dummyDataSource As Boolean) As IEnumerable

매개 변수

selectedDataSource
IEnumerable

데이터 형식에 대한 템플릿으로 사용되는 IEnumerable을 구현하는 개체입니다.

minimumRows
Int32

데이터 소스에 포함할 샘플 데이터의 최소 행 수입니다.

dummyDataSource
Boolean

반환된 데이터 소스에 더미 데이터가 들어 있으면 true이고, 반환된 데이터 소스에 실제 데이터 소스의 데이터가 들어 있으면 false입니다.

반환

IEnumerable

디자인 타임에 사용할 데이터 소스 역할을 하는 IEnumerable 인터페이스를 구현하는 개체입니다.

설명

BaseDataListDesigner.GetDesignTimeDataSource메서드는 DataTable 매개 변수로 지정 된 데이터 소스에서 개체를 생성 하려고 합니다 selectedDataSource . 가능 하지 않은 경우 DataTable 더미 데이터에서를 만듭니다.

추가 정보

적용 대상