Then in the SelectionChangedCommand Execute method you can take the added and removed items:
privatevoidSelectionChangedExecute(object param)
{
var selectionEventArgs = param as Telerik.Maui.Controls.ComboBoxSelectionChangedEventArgs;
if (selectionEventArgs != null)
{
var addedItems = selectionEventArgs.AddedItems;
var removedItems = selectionEventArgs.RemovedItems;
}
}
Please give it a try and let me know how it goes.
Regards,
Yana
Progress Telerik
A brand new .NET MAUI course was just added to the Virtual Classroom. The training course is developed to help you get started with the Telerik UI for .NET MAUI components and features. It aims to put you in the shoes of an engineer who adds new features to an existing application. You can check it out at https://learn.telerik.com