void Cell_LongPressed(object sender, MR.Gestures.LongPressEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("Cell_LongPressed method called");
 }
 void Cell_LongPressed(object sender, MR.Gestures.LongPressEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("ImageCellXaml.Cell_LongPressed method called on cell '" + ((ImageCell)sender).Text + "'");
 }
 void Red_LongPressing(object sender, MR.Gestures.LongPressEventArgs e)
 {
     AddText("BoxViewXaml.Red_LongPressing method called with " + e.NumberOfTouches + " fingers");
 }
 void Red_LongPressed(object sender, MR.Gestures.LongPressEventArgs e)
 {
     AddText("BoxViewXaml.Red_LongPressed method called, ViewPosition X/Y/W/H = " + e.ViewPosition.X + "/" + e.ViewPosition.Y + "/" + e.ViewPosition.Width + "/" + e.ViewPosition.Height);
 }
 void Cell_LongPressing(object sender, MR.Gestures.LongPressEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("TextCellRecycle.Cell_LongPressing method called on cell '" + ((TextCell)sender).Text + "'");
 }