Inheritance: Eto.Platform
Exemple #1
0
        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();
        }
Exemple #2
0
		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();
		}
Exemple #3
0
		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();
		}
Exemple #4
0
        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();
        }
Exemple #5
0
		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();
		}
Exemple #6
0
        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();
        }
Exemple #7
0
        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();
        }