共用方式為


ListViewPagedDataSource.Count 屬性

定義

取得目前頁面的資料來源中要使用的項目數目。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

屬性值

目前頁面的資料來源中要使用的項目數目。

實作

備註

Count使用屬性來決定要從數據來源使用的項目數目。 傳回的值取決於下列準則:

  • 如果目前的頁面不是最後一頁,而且 MaximumRows 屬性設定為大於或等於0的值,則會傳回屬性的值 MaximumRows

  • 如果目前的頁面不是最後一頁,而且 MaximumRows 屬性設定為小於0的值,則會先從屬性的值 DataSourceCount 減去屬性的值 StartRowIndex ,再傳回屬性的值。

  • 如果目前的頁面是最後一頁, DataSourceCount 則會先從屬性的值減去屬性的值 StartRowIndex ,再傳回屬性。

  • DataSource如果屬性為 null,則會傳回 0。

適用於

另請參閱