共用方式為


DataSourceProvider.IsInitialLoadEnabled 屬性

定義

取得或設定值,這個值表示是否要防止或延遲自動資料載入。

public:
 property bool IsInitialLoadEnabled { bool get(); void set(bool value); };
public bool IsInitialLoadEnabled { get; set; }
member this.IsInitialLoadEnabled : bool with get, set
Public Property IsInitialLoadEnabled As Boolean

屬性值

Boolean

false 表示防止或延遲自動資料載入,否則為 true。 預設值是 true

備註

一般而言, DataSourceProvider 會執行其查詢,並在第一次由系結或 CollectionViewSource 使用時設定其 Data 屬性。 您可以將 屬性設定 IsInitialLoadEnabledfalse 來省略此步驟。 在此情況下,應用程式必須明確呼叫 Refresh ,才能讓提供者取得其資料。

適用於