DataRepeaterItem.ItemIndex 属性

获取 DataRepeaterItem 的索引。 DataRepeater 控件的。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
<BrowsableAttribute(False)> _
Public ReadOnly Property ItemIndex As Integer
[BrowsableAttribute(false)]
public int ItemIndex { get; }
[BrowsableAttribute(false)]
public:
property int ItemIndex {
    int get ();
}
[<BrowsableAttribute(false)>]
member ItemIndex : int
function get ItemIndex () : int

属性值

类型:System.Int32
当前 DataRepeaterItem 的索引。

备注

使用此属性确定每 DataRepeaterItem 索引,将在 DataRepeater 控件的 DrawItem 事件处理。

示例

下面的示例演示如何使用 DrawItem 事件处理程序显示每个项的 ItemIndex 。 它,假设您有一个带有名为 ItemLabel的一个未绑定 Label 控件的 DataRepeater1 的绑定 DataRepeater 的窗体。

Private Sub DataRepeater1_DrawItem(
    ByVal sender As Object, 
    ByVal e As Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs
  ) Handles DataRepeater1.DrawItem

    ' Display the ItemIndex in the label.
    e.DataRepeaterItem.Controls("ItemLabel").Text = 
        CStr(e.DataRepeaterItem.ItemIndex)
End Sub
private void dataRepeater1_DrawItem(object sender, Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs e)
{
    // Display the ItemIndex in the label.
    e.DataRepeaterItem.Controls["itemLabel"].Text = e.DataRepeaterItem.ItemIndex.ToString();
}

.NET Framework 安全性

请参见

参考

DataRepeaterItem 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

DataRepeater 控件简介 (Visual Studio)