New to Telerik UI for .NET MAUIStart a free 30-day trial

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:

C#
public class ComboBoxSelectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsComboBoxSelectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ComboBoxSelectionChangedEventArgs class.

C#
public ComboBoxSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
Parameters:removedItemsIEnumerable<object>

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.

C#
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.

C#
public IEnumerable<object> RemovedItems { get; }