DetailsViewDesigner.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 从类继承的 DetailsViewDesigner 类中的属性,以更改设计时显示在控件的寻呼行 DetailsView 中的页链接数。 该示例导致显示五个页面链接。

// Determines the number of page links in the pager row
// when viewed in the designer.
protected override int SampleRowCount
{
    get
    {
        // Render five page links in the pager row.
        return 5;
    }
} // SampleRowCount
' Determines the number of page links in the pager row
' when viewed in the designer.
Protected Overrides ReadOnly Property SampleRowCount() As Integer
    Get
        ' Render five page links in the pager row.
        Return 5
    End Get
End Property ' SampleRowCount

注解

SampleRowCount 属性始终返回数字 2。 这会导致设计时在控件的 DetailsView 寻呼行中显示两个页面链接。

适用于

另请参阅