ISelectionItemProvider.AddToSelection Metoda

Definicja

Dodaje bieżący element do kolekcji wybranych elementów.

public:
 void AddToSelection();
public void AddToSelection();
abstract member AddToSelection : unit -> unit
Public Sub AddToSelection ()

Przykłady

Poniższy przykładowy kod dodaje element do kolekcji wybranych elementów.

/// <summary>
/// Adds an item to the selection for list boxes that 
/// support multiple selection.
/// </summary>
/// <remarks>
/// In a single-selection list box, AddToSelection() is 
/// equivalent to Select().
/// selectedItems is the collection of selected ListItems.
/// </remarks>
public void AddToSelection()
{
    // Return if the item is already selected.
    if (((ISelectionItemProvider)this).IsSelected)
        return;
    selectedItems.Add(this);
    // TODO: Update UI.
}
''' <summary>
''' Adds an item to the selection for list boxes that 
''' support multiple selection.
''' </summary>
''' <remarks>
''' In a single-selection list box, AddToSelection() is 
''' equivalent to Select().
''' selectedItems is the collection of selected ListItems.
''' </remarks>
Public Sub AddToSelection() Implements ISelectionItemProvider.AddToSelection
    ' Return if the item is already selected.
    If (CType(Me, ISelectionItemProvider)).IsSelected Then
        Return
    End If
    selectedItems.Add(Me)
    ' TODO: Update UI.
End Sub
/// <summary>
/// Specifies whether the item is selected.
/// </summary>
/// <remarks>
/// selectedItems is the collection of selected ListItems.
/// </remarks>
public bool IsSelected
{
    get
    {
        return selectedItems.Contains(this);
    }
}
''' <summary>
''' Specifies whether the item is selected.
''' </summary>
''' <remarks>
''' selectedItems is the collection of selected ListItems.
''' </remarks>
Public ReadOnly Property IsSelected() As Boolean Implements ISelectionItemProvider.IsSelected
    Get
        Return selectedItems.Contains(Me)
    End Get
End Property

Uwagi

Jeśli wynikiem wywołania AddToSelection jest wybranie pojedynczego elementu, wyślij element ElementSelectedEvent dla tego elementu; w przeciwnym razie wyślij element lub ElementRemovedFromSelectionEvent zgodnie z potrzebamiElementAddedToSelectionEvent.

Uwaga / Notatka

Ta reguła nie zależy od tego, czy kontener zezwala na wybór pojedynczy lub wielokrotny, czy też od metody użytej do zmiany zaznaczenia. Tylko wynik ma znaczenie.

Dotyczy

Zobacz też