ListBox.SelectionMode Proprietà

Definizione

Ottiene o imposta il metodo in cui sono selezionati gli elementi nel controllo ListBox.

public:
 virtual property System::Windows::Forms::SelectionMode SelectionMode { System::Windows::Forms::SelectionMode get(); void set(System::Windows::Forms::SelectionMode value); };
public virtual System.Windows.Forms.SelectionMode SelectionMode { get; set; }
member this.SelectionMode : System.Windows.Forms.SelectionMode with get, set
Public Overridable Property SelectionMode As SelectionMode

Valore della proprietà

Uno dei valori di SelectionMode. Il valore predefinito è SelectionMode.One.

Eccezioni

Il valore assegnato non è uno dei valori di SelectionMode.

Esempio

Nell'esempio di codice seguente viene illustrato come usare il GetSelected metodo per determinare gli elementi in un ListBox oggetto selezionato per selezionare gli elementi non selezionati e deselezionare gli elementi selezionati. L'esempio illustra anche l'uso della SelectionMode proprietà per consentire a un oggetto ListBox di avere più di un elemento selezionato e usa la Sorted proprietà per illustrare come ordinare gli elementi in un ListBox oggetto automaticamente. In questo esempio è necessario che un ListBoxoggetto , denominato listBox1, sia stato aggiunto a un modulo e che il InitializeMyListBox metodo definito nell'esempio venga chiamato dall'evento Load del modulo.

private:
   void InitializeMyListBox()
   {
      // Add items to the ListBox.
      listBox1->Items->Add( "A" );
      listBox1->Items->Add( "C" );
      listBox1->Items->Add( "E" );
      listBox1->Items->Add( "F" );
      listBox1->Items->Add( "G" );
      listBox1->Items->Add( "D" );
      listBox1->Items->Add( "B" );

      // Sort all items added previously.
      listBox1->Sorted = true;

      // Set the SelectionMode to select multiple items.
      listBox1->SelectionMode = SelectionMode::MultiExtended;

      // Select three initial items from the list.
      listBox1->SetSelected( 0, true );
      listBox1->SetSelected( 2, true );
      listBox1->SetSelected( 4, true );

      // Force the ListBox to scroll back to the top of the list.
      listBox1->TopIndex = 0;
   }

   void InvertMySelection()
   {
      // Loop through all items the ListBox.
      for ( int x = 0; x < listBox1->Items->Count; x++ )
      {
         // Select all items that are not selected,
         // deselect all items that are selected.
         listBox1->SetSelected( x,  !listBox1->GetSelected( x ) );
      }
      listBox1->TopIndex = 0;
   }
private void InitializeMyListBox()
{
   // Add items to the ListBox.
   listBox1.Items.Add("A");
   listBox1.Items.Add("C");
   listBox1.Items.Add("E");
   listBox1.Items.Add("F");
   listBox1.Items.Add("G");
   listBox1.Items.Add("D");
   listBox1.Items.Add("B");

   // Sort all items added previously.
   listBox1.Sorted = true;

   // Set the SelectionMode to select multiple items.
   listBox1.SelectionMode = SelectionMode.MultiExtended;

   // Select three initial items from the list.
   listBox1.SetSelected(0,true);
   listBox1.SetSelected(2,true);
   listBox1.SetSelected(4,true);

   // Force the ListBox to scroll back to the top of the list.
   listBox1.TopIndex=0;
}

private void InvertMySelection()
{
   // Loop through all items the ListBox.
   for (int x = 0; x < listBox1.Items.Count; x++)
   {
      // Determine if the item is selected.
      if(listBox1.GetSelected(x) == true)
         // Deselect all items that are selected.
         listBox1.SetSelected(x,false);      
      else
         // Select all items that are not selected.
         listBox1.SetSelected(x,true);
   }
   // Force the ListBox to scroll back to the top of the list.
   listBox1.TopIndex=0;
}
Private Sub InitializeMyListBox()
   ' Add items to the ListBox.
   listBox1.Items.Add("A")
   listBox1.Items.Add("C")
   listBox1.Items.Add("E")
   listBox1.Items.Add("F")
   listBox1.Items.Add("G")
   listBox1.Items.Add("D")
   listBox1.Items.Add("B")

   ' Sort all items added previously.
   listBox1.Sorted = True

   ' Set the SelectionMode to select multiple items.
   listBox1.SelectionMode = SelectionMode.MultiExtended

   ' Select three initial items from the list.
   listBox1.SetSelected(0, True)
   listBox1.SetSelected(2, True)
   listBox1.SetSelected(4, True)

   ' Force the ListBox to scroll back to the top of the list.
   listBox1.TopIndex = 0
End Sub

Private Sub InvertMySelection()

   Dim x As Integer
   ' Loop through all items the ListBox.
   For x = 0 To listBox1.Items.Count - 1

      ' Determine if the item is selected.
      If listBox1.GetSelected(x) = True Then
         ' Deselect all items that are selected.
         listBox1.SetSelected(x, False)
      Else
         ' Select all items that are not selected.
         listBox1.SetSelected(x, True)
      End If
   Next x
   ' Force the ListBox to scroll back to the top of the list.
   listBox1.TopIndex = 0
End Sub

Commenti

La SelectionMode proprietà consente di determinare il numero di elementi in ListBox un utente che può selezionare in una sola volta e come l'utente può effettuare più selezioni. Quando la SelectionMode proprietà è impostata su SelectionMode.MultiExtended, premere MAIUSC e fare clic sul mouse o premere MAIUSC e uno dei tasti di direzione (FRECCIA SU, FRECCIA GIÙ, FRECCIA SINISTRA e FRECCIA DESTRA) estende la selezione dall'elemento selezionato in precedenza all'elemento corrente. Premere CTRL e fare clic sul mouse seleziona o deseleziona un elemento nell'elenco. Quando la proprietà è impostata su SelectionMode.MultiSimple, un clic del mouse o premendo LA BARRA SPAZIATRICE seleziona o deseleziona un elemento nell'elenco.

Si applica a

Vedi anche