Beispiel #1
0
        partial void ShowSchema(NSObject sender)
        {
            SchemaBrowserWindowController awc = new SchemaBrowserWindowController(serverNode.DTO);

            NSApplication.SharedApplication.BeginSheet(awc.Window, this.Window, () => {
            });
            try {
                NSApplication.SharedApplication.RunModalForWindow(awc.Window);
            } finally {
                Window.EndSheet(awc.Window);
                awc.Dispose();
            }
        }
 public OutlineDelegate(SchemaBrowserWindowController ob)
 {
     this.ob       = ob;
     directoryIcon = NSImage.ImageNamed("directoryObject.png");
 }
 partial void ShowSchema (NSObject sender)
 {
     SchemaBrowserWindowController awc = new SchemaBrowserWindowController (serverNode.DTO);
     NSApplication.SharedApplication.BeginSheet (awc.Window, this.Window, () => {
     });
     try {
         NSApplication.SharedApplication.RunModalForWindow (awc.Window);
     } finally {
         Window.EndSheet (awc.Window);
         awc.Dispose ();
     }
 }
 public OutlineDelegate (SchemaBrowserWindowController ob)
 {
     this.ob = ob;
     directoryIcon = NSImage.ImageNamed ("directoryObject.png");
 }