Class ComboBoxSelectionChangedEventArgs
Provides data for the ComboBox SelectionChanged event.
Inheritance
System.Object
ComboBoxSelectionChangedEventArgs
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ComboBoxSelectionChangedEventArgs : EventArgs
Constructors
ComboBoxSelectionChangedEventArgs(IEnumerable<Object>, IEnumerable<Object>)
Initializes a new instance of the ComboBoxSelectionChangedEventArgs class.
Declaration
public ComboBoxSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
Parameters
System.Collections.Generic.IEnumerable<System.Object>
removedItems
The removed items. |
System.Collections.Generic.IEnumerable<System.Object>
addedItems
The added items. |
Properties
AddedItems
Gets a IEnumerable that contains the items that were selected.
Declaration
public IEnumerable<object> AddedItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|
RemovedItems
Gets a IEnumerable that contains the items that were deselected.
Declaration
public IEnumerable<object> RemovedItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|