ClassComboBoxSelectionChangedEventArgs
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
ComboBoxSelectionChangedEventArgs(IEnumerable<object>, IEnumerable<object>)
Initializes a new instance of the ComboBoxSelectionChangedEventArgs class.
Declaration
public ComboBoxSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
Parameters
removedItems
The collection of items that were removed from the selection.
addedItems
The collection of items that were added to the selection.
Properties
AddedItems
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.
Declaration
public IEnumerable<object> AddedItems { get; }
Property Value
RemovedItems
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.
Declaration
public IEnumerable<object> RemovedItems { get; }
Property Value