Documentation: https://www.telerik.com/maui-ui/documentation/controls/collectionview/selection#selection-mode
Regards, Didi Progress Telerik
#if WINDOWS this.collectionView.HandlerChanged += CollectionView_HandlerChanged; private void CollectionView_HandlerChanged(object? sender, EventArgs e) { if (this.collectionView.Handler?.PlatformView is Microsoft.UI.Xaml.UIElement nativeView) { nativeView.PreviewKeyDown += NativeView_PreviewKeyDown; } } private void NativeView_PreviewKeyDown(object sender, Microsoft.UI.Xaml.Input.KeyRoutedEventArgs e) { if (e.Key == Windows.System.VirtualKey.Space && this.collectionView.SelectedItem != null) { this.collectionView.SelectedItem = null; e.Handled = true; } } #endif