ListViewSelectEventArgs.NewSelectedIndex 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置要在 ListView 控件中选择的新项的索引。
public:
property int NewSelectedIndex { int get(); void set(int value); };
public int NewSelectedIndex { get; set; }
member this.NewSelectedIndex : int with get, set
Public Property NewSelectedIndex As Integer
属性值
要在 ListView 控件中选择的新项的索引。
示例
下面的示例演示如何使用 NewSelectedIndex 对象的 ListViewSelectEventArgs 属性访问用户选择的项。
void ProductsListView_SelectedIndexChanging(Object sender, ListViewSelectEventArgs e)
{
ListViewItem item = (ListViewItem)ProductsListView.Items[e.NewSelectedIndex];
Label l = (Label)item.FindControl("DiscontinuedDateLabel");
if (String.IsNullOrEmpty(l.Text))
{
return;
}
DateTime discontinued = DateTime.Parse(l.Text);
if (discontinued < DateTime.Now)
{
Message.Text = "You cannot select a discontinued item.";
e.Cancel = true;
}
}
Sub ProductsListView_SelectedIndexChanging(ByVal sender As Object, ByVal e As ListViewSelectEventArgs)
Dim item As ListViewItem = CType(ProductsListView.Items(e.NewSelectedIndex), ListViewItem)
Dim l As Label = CType(item.FindControl("DiscontinuedDateLabel"), Label)
If String.IsNullOrEmpty(l.Text) Then
Return
End If
Dim discontinued As DateTime = DateTime.Parse(l.Text)
If discontinued < DateTime.Now Then
Message.Text = "You cannot select a discontinued item."
e.Cancel = True
End If
End Sub
注解
该 ListView.SelectedIndexChanging 事件在 ListView 控件执行选择操作之前发生。 因此,不能使用 ListView.SelectedIndex 控件的 属性来确定用户选择的新项的索引。 属性 ListView.SelectedIndex 包含以前选定项的索引。 若要确定用户选择的新项的索引,请使用 NewSelectedIndex 属性。 还可以使用此属性通过将所选项索引设置为另一个值,以编程方式重写所选项索引。