Прочитај на енглеском Уреди

Делите путем


ListViewSelectEventArgs.NewSelectedIndex Property

Definition

Gets or sets the index of the new item to select in the ListView control.

C#
public int NewSelectedIndex { get; set; }

Property Value

The index of the new item to select in the ListView control.

Examples

The following example shows how to use the NewSelectedIndex property of the ListViewSelectEventArgs object to access the item that was selected by the user.

C#
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;
  }
}

Remarks

The ListView.SelectedIndexChanging event occurs before the ListView control performs the select operation. Therefore, you cannot use the ListView.SelectedIndex property of the control to determine the index of the new item selected by the user. The ListView.SelectedIndex property contains the index of the previously selected item. To determine the index of the new item that is selected by the user, use the NewSelectedIndex property. You can also use this property to programmatically override the selected item index by setting it to another value.

Applies to

Производ Верзије
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also