DetailsViewDesigner.SampleRowCount 属性

定义

获取要显示的关联控件的示例行数。Gets the number of sample rows for the associated control to display.

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

属性值

Int32

要显示的示例行数。The number of sample rows to show.

示例

下面的代码示例演示如何重写 SampleRowCount 从类继承的类中的属性 DetailsViewDesigner ,以更改设计时在控件的页导航行中显示的页面链接数 DetailsViewThe following code example shows how to override the SampleRowCount property in a class inherited from the DetailsViewDesigner class to change the number of page links appearing in the pager row of the DetailsView control at design time. 该示例将导致显示5个页面链接。The example causes five page links to be displayed.

// 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属性始终返回数字 2The SampleRowCount property always returns the number 2. 这将导致在设计时在控件的页导航行中显示两个页面链接 DetailsViewThis causes two page links to be displayed in the pager row of the DetailsView control at design time.

适用于

另请参阅