private void SfListView_SwipeStarted(object sender, Syncfusion.ListView.XForms.SwipeStartedEventArgs e) { if ((e.ItemData as Contacts).BackgroundColor == Color.LightGray) { e.Cancel = true; } }
void Handle_SwipeStarted(object sender, Syncfusion.ListView.XForms.SwipeStartedEventArgs e) { viewModel.ItemIndex = -1; }
private void ListView_SwipeStarted(object sender, Syncfusion.ListView.XForms.SwipeStartedEventArgs e) { itemIndex = -1; }
public void OnSwipeStarted(SwipeStartedEventArgs eventArgs) { itemIndex = -1; }