//public static event MapControlClickedEventHandler Click; /* * public static void OnClick(System.Windows.Input.MouseButtonEventArgs e) * { * var handler = Click; * if (handler != null) handler(e); * } */ public static void OnMapLongPress(UIKit.UILongPressGestureRecognizer recognizer) { var handler = MapLongPress; if (handler != null) { handler(recognizer); } }
partial void HandleLongPress(UIKit.UILongPressGestureRecognizer recognizer);
partial void didLongPress(UIKit.UILongPressGestureRecognizer sender);
partial void ParagraphSelected(UIKit.UILongPressGestureRecognizer sender);