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