共用方式為


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 從虛擬資料建立。

另請參閱

適用於