Example #1
0
 static void Pressed_cb(IntPtr inst, double x, double y)
 {
     try {
         GestureLongPress __obj = GLib.Object.GetObject(inst, false) as GestureLongPress;
         __obj.OnPressed(x, y);
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }
Example #2
0
 static void Cancelled_cb(IntPtr inst)
 {
     try {
         GestureLongPress __obj = GLib.Object.GetObject(inst, false) as GestureLongPress;
         __obj.OnCancelled();
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }