示例#1
0
 public override void DidChange(MonoMac.Foundation.NSNotification notification)
 {
     base.DidChange(notification);
     if (entryEventSink != null)
     {
         Toolkit.Invoke(delegate {
             entryEventSink.OnChanged();
         });
     }
 }
示例#2
0
 public override void DidChange(MonoMac.Foundation.NSNotification notification)
 {
     base.DidChange(notification);
     if (entryEventSink != null)
     {
         context.InvokeUserCode(delegate {
             entryEventSink.OnChanged();
             entryEventSink.OnSelectionChanged();
         });
     }
 }
示例#3
0
 public override void DidFinishLaunching(MonoMac.Foundation.NSNotification notification)
 {
     Program.RunGame();
 }