共用方式為


FormViewDesigner.SampleRowCount 屬性

定義

取得要讓關聯控制項顯示的範例資料列數。

protected:
 virtual property int SampleRowCount { int get(); };
protected override int SampleRowCount { get; }
member this.SampleRowCount : int
Protected Overrides ReadOnly Property SampleRowCount As Integer

屬性值

範例資料列數目。

範例

下列程式代碼範例示範如何覆寫 SampleRowCount 繼承自 FormViewDesigner 類別的 類別中的 屬性,以變更在設計時間出現在控件的呼叫器數據列中 FormView 的頁面連結數目。 此範例會導致顯示四個頁面連結。

// Determines the number of design-time links in the pager row.
protected override int SampleRowCount
{
    get
    {
        // Render four links in the pager row.
        return 4;
    }
} // SampleRowCount
' Determines the number of design-time links in the pager row.
Protected Overrides ReadOnly Property SampleRowCount() As Integer
    Get
        ' Render four links in the pager row.
        Return 4
    End Get
End Property ' SampleRowCount

備註

SampleRowCount 律會傳 2回 。 如果模式為數值,PagerSettings這會導致在設計時間於控件的呼叫器數據列中FormView顯示兩個頁面連結。

適用於

另請參閱