ListBox.TopIndex Свойство

Определение

Получает или задает индекс первой видимой позиции в элементе управления ListBox.

public:
 property int TopIndex { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int TopIndex { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.TopIndex : int with get, set
Public Property TopIndex As Integer

Значение свойства

Отсчитываемый от нуля индекс первой видимой позиции в элементе управления.

Атрибуты

Примеры

В следующем примере кода показано, как использовать SelectedIndex свойство со свойством TopIndex , чтобы переместить выбранный в данный момент элемент в начало списка элементов в области ListBoxотображения . Далее в примере показано, как удалить элементы с помощью RemoveAt метода System.Windows.Forms.ListBox.ObjectCollection класса и как очистить все выбранные ClearSelected элементы с помощью метода . Сначала код перемещает выбранный элемент в списке в ListBox начало списка. Затем код удаляет все элементы перед текущим выбранным элементом и очищает все выделенные ListBoxэлементы в . В этом примере требуется, чтобы ListBox элемент, содержащий элементы, был добавлен в форму и что элемент в данный момент выбран в ListBox.

private:
   void RemoveTopItems()
   {
      // Determine if the currently selected item in the ListBox 
      // is the item displayed at the top in the ListBox.
      if ( listBox1->TopIndex != listBox1->SelectedIndex )

      // Make the currently selected item the top item in the ListBox.
      listBox1->TopIndex = listBox1->SelectedIndex;

      // Remove all items before the top item in the ListBox.
      for ( int x = (listBox1->SelectedIndex - 1); x >= 0; x-- )
      {
         listBox1->Items->RemoveAt( x );
      }

      // Clear all selections in the ListBox.
      listBox1->ClearSelected();
   }
private void RemoveTopItems()
{
   // Determine if the currently selected item in the ListBox 
   // is the item displayed at the top in the ListBox.
   if (listBox1.TopIndex != listBox1.SelectedIndex)
      // Make the currently selected item the top item in the ListBox.
      listBox1.TopIndex = listBox1.SelectedIndex;

   // Remove all items before the top item in the ListBox.
   for (int x = (listBox1.SelectedIndex -1); x >= 0; x--)
   {
      listBox1.Items.RemoveAt(x);
   }

   // Clear all selections in the ListBox.
   listBox1.ClearSelected();
}
Private Sub RemoveTopItems()
   ' Determine if the currently selected item in the ListBox 
   ' is the item displayed at the top in the ListBox.
   If listBox1.TopIndex <> listBox1.SelectedIndex Then
      ' Make the currently selected item the top item in the ListBox.
      listBox1.TopIndex = listBox1.SelectedIndex
   End If
   ' Remove all items before the top item in the ListBox.
   Dim x As Integer
   For x = listBox1.SelectedIndex - 1 To 0 Step -1
      listBox1.Items.RemoveAt(x)
   Next x

   ' Clear all selections in the ListBox.
   listBox1.ClearSelected()
End Sub

Комментарии

Изначально элемент с нулевой позицией индекса (0) находится в верхней части видимой ListBoxобласти . Если содержимое ListBox элемента было прокручено, другой элемент может находиться в верхней части области отображения элемента управления. Это свойство можно использовать для получения индекса в ListBox.ObjectCollection для ListBox элемента, который в данный момент расположен в верхней части видимой области элемента управления. Это свойство также можно использовать для размещения элемента в списке в верхней части видимой области элемента управления.

Применяется к