ISelectionItemProvider.AddToSelection Metod

Definition

Lägger till det aktuella elementet i samlingen med markerade objekt.

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

Exempel

Följande exempelkod lägger till objektet i en samling markerade objekt.

/// <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

Kommentarer

Om resultatet av ett anrop till AddToSelection är att ett enskilt objekt har valts skickar du ett ElementSelectedEvent för det elementet. Annars skickar du ett ElementAddedToSelectionEvent eller ElementRemovedFromSelectionEvent efter behov.

Note

Den här regeln beror inte på om containern tillåter enkla eller flera val, eller vilken metod som användes för att ändra markeringen. Bara resultatet spelar roll.

Gäller för

Se även