Provides data for the SelectionChanged event. Contains information about items that were added to or removed from the selection.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class ComboBoxSelectionChangedEventArgs : EventArgs
Inheritance: objectEventArgsComboBoxSelectionChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the ComboBoxSelectionChangedEventArgs class.
public ComboBoxSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
The collection of items that were removed from the selection.
addedItemsIEnumerable<object>The collection of items that were added to the selection.
Properties
Gets the collection of items that were added to the selection. This collection contains the items that are newly selected and are now part of the current selection.
public IEnumerable<object> AddedItems { get; }
Gets the collection of items that were removed from the selection. This collection contains the items that were previously selected but are no longer part of the current selection.
public IEnumerable<object> RemovedItems { get; }