.NET MAUI ComboBox Events
The .NET MAUI ComboBox exposes the following events:
-
SelectionChanged
event is raised when item is selected. The SelectionChanged event handler receives two parameters:- The
sender
which is the RadComboBox control. -
ComboBoxSelectionChangedEventArgs
provides the following properties:-
AddedItems
: the items added to theSelectedItemsCollection
-
RemovedItems
: the items removed from theSelectedItemsCollection
-
- The
Completed
: Invoked when the completed button of the keyboard gets pressed. In WinUI and MacCatalyst its invoked when entered gets pressed.