FormViewDesigner.SampleRowCount 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取要显示的关联控件的示例行数。
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寻呼行中显示两个页面链接。