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

属性值

Int32

示例行数。

示例

下面的代码示例演示如何重写 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。 这会导致在设计时在控件的 FormView 寻呼行中显示两个页面链接(如果 PagerSettings 模式为数值)。

适用于

另请参阅