2013-06-07 21:42:46 +04:00
|
|
|
using System;
|
2014-11-22 02:35:13 +03:00
|
|
|
using CoreGraphics;
|
|
|
|
using Foundation;
|
|
|
|
using AppKit;
|
|
|
|
using ObjCRuntime;
|
2013-06-07 21:42:46 +04:00
|
|
|
|
|
|
|
namespace NSComboBoxTest
|
|
|
|
{
|
|
|
|
public partial class AppDelegate : NSApplicationDelegate
|
|
|
|
{
|
|
|
|
MainWindowController mainWindowController;
|
|
|
|
|
|
|
|
public AppDelegate ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-22 02:35:13 +03:00
|
|
|
public override void DidFinishLaunching (NSNotification notification)
|
2013-06-07 21:42:46 +04:00
|
|
|
{
|
|
|
|
mainWindowController = new MainWindowController ();
|
|
|
|
mainWindowController.Window.MakeKeyAndOrderFront (this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|