static void Start() { #if DEBUG && !XAMMAC2 Debug.Listeners.Add(new ConsoleTraceListener()); #endif AddStyles(); var generator = new Eto.Mac.Platform(); var app = new AltmanApplication(generator); app.Run(); }
static void Main(string[] args) { AddStyles(); var platform = new Eto.Mac.Platform(); var app = new TestApplication(platform); app.TestAssemblies.Add(typeof(Startup).Assembly); // use this to use your own app delegate: // ApplicationHandler.Instance.AppDelegate = new MyAppDelegate(); app.Run(); }
static void Main (string[] args) { #if DEBUG && !XAMMAC2 Debug.Listeners.Add (new ConsoleTraceListener ()); #endif AddStyles (); var generator = new Eto.Mac.Platform (); var app = new TestApplication (generator); // use this to use your own app delegate: // ApplicationHandler.Instance.AppDelegate = new MyAppDelegate(); app.Run(); }
static void Main(string[] args) { #if DEBUG && !XAMMAC2 Debug.Listeners.Add(new ConsoleTraceListener()); #endif AddStyles(); var generator = new Eto.Mac.Platform(); var app = new TestApplication(generator); // use this to use your own app delegate: // ApplicationHandler.Instance.AppDelegate = new MyAppDelegate(); app.Run(); }
static void Main(string[] args) { AddStyles(); var stopwatch = new Stopwatch(); stopwatch.Start(); var platform = new Eto.Mac.Platform(); stopwatch.Stop(); var app = new TestApplication(platform); app.AsyncInvoke(() => Log.Write(null, $"Startup: {stopwatch.Elapsed}")); app.TestAssemblies.Add(typeof(Startup).Assembly); // use this to use your own app delegate: // ApplicationHandler.Instance.AppDelegate = new MyAppDelegate(); app.Run(); }