void RaiseSwipeStarted()
        {
            if (_swipeDirection == null || !ValidateSwipeDirection())
            {
                return;
            }

            var swipeStartedEventArgs = new SwipeStartedEventArgs(_swipeDirection.Value);

            ((ISwipeViewController)Element).SendSwipeStarted(swipeStartedEventArgs);
        }
        private async void SwipeView_SwipeStarted(object sender, SwipeStartedEventArgs e)
        {
            //await DisplayAlert("Swipe started", "Starting swipe action","Ok");

            if (!string.IsNullOrEmpty(outputLabel.Text))
            {
                outputLabel.Text += $"{Environment.NewLine} Swipe Started";
            }
            else
            {
                outputLabel.Text = "Swipe Started";
            }
        }
Example #3
0
 private void SfListViewEx_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     _isSwiping = true;
 }
Example #4
0
 private void ListView_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     itemIndex = -1;
 }
 void SfGrid_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     SfGrid.MaxSwipeOffset = 120;
 }
Example #6
0
 private void ListView_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     SwipingViewModel.ItemIndex = -1;
 }
Example #7
0
 private void SwipeView_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     lblStarted.Text = $"Acionado SwipeStarted : {DateTime.Now:HH:mm:ss} - {e.SwipeDirection}";
 }
Example #8
0
 private void ListView_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     memberItem = null;
 }
Example #9
0
 private void SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
 }
Example #10
0
 private void SwipeView_OnSwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     var x = ((SwipeView)sender);
     var y = e.SwipeDirection;
 }
Example #11
0
 private void SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     OpenAnimation();
 }
Example #12
0
 private void OnSwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     Console.WriteLine($"\tSwipeStarted: Direction - {e.SwipeDirection}");
 }
 public void OnSwipeStarted(SwipeStartedEventArgs eventArgs)
 {
     itemIndex = -1;
 }
 private void SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     LblStarted.Text = $"Acionado SwipeStarted: {DateTime.Now.ToString("HH:mm:ss")} - {e.SwipeDirection}";
 }
Example #15
0
 void OnSwipeViewSwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     Debug.WriteLine("SwipeView SwipeStarted");
 }
Example #16
0
 private void SfListView_OnSwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     e.Cancel = false;
 }
Example #17
0
 private void ListView_SwipeStarted(object sender, SwipeStartedEventArgs e)
 {
     itemIndex = -1;
     //Selects whatever item is being swiped so it will be correctly deleted
     synclist.SelectedItem = _viewmodel.Todos[e.ItemIndex];
 }