void Cell_Rotated(object sender, MR.Gestures.RotateEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("Cell_Rotated method called");
 }
 void Cell_Rotated(object sender, MR.Gestures.RotateEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("ImageCellXaml.Cell_Rotated method called on cell '" + ((ImageCell)sender).Text + "'");
 }
 void Red_Rotated(object sender, MR.Gestures.RotateEventArgs e)
 {
     AddText("BoxViewXaml.Red_Rotated method called");
 }
示例#4
0
 protected override void OnRotating(MR.Gestures.RotateEventArgs e)
 {
     base.OnRotating(e);
     UpdateMarks(e);
 }
 void Cell_Rotating(object sender, MR.Gestures.RotateEventArgs e)
 {
     ((TextOnlyViewModel)BindingContext).AddText("TextCellRecycle.Cell_Rotating method called on cell '" + ((TextCell)sender).Text + "'");
 }