void Cell_Tapping(object sender, MR.Gestures.TapEventArgs e)
        {
            var vm   = (ListOfObjectsViewModel)BindingContext;
            var item = (GestureSample.ViewModels.ListOfObjectsViewModel.TextAndImage)((ImageCell)sender).BindingContext;

            vm.Item = item;
            vm.AddText("ImageCellXaml.Cell_Tapping method called on cell '" + item.Text + "' " + e.NumberOfTaps + " times");
        }
 void Cell_DoubleTapped(object sender, MR.Gestures.TapEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("Cell_DoubleTapped method called " + e.NumberOfTaps + " times");
 }
 void Cell_DoubleTapped(object sender, MR.Gestures.TapEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("ImageCellXaml.Cell_DoubleTapped method called on cell '" + ((ImageCell)sender).Text + "' " + e.NumberOfTaps + " times");
 }
 void Cell_Tapping(object sender, MR.Gestures.TapEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("ListViewXaml.Cell_Tapping method called " + e.NumberOfTaps + " times");
 }
示例#5
0
 protected override void OnTapping(MR.Gestures.TapEventArgs e)
 {
     base.OnTapping(e);
     UpdateMarks(e);
 }
 void Cell_Tapped(object sender, MR.Gestures.TapEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("TextCellRecycle.Cell_Tapped method called on cell '" + ((TextCell)sender).Text + "' " + e.NumberOfTaps + " times");
 }