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 从虚拟数据创建。

另请参阅

适用于