Beispiel #1
0
		static void Main (string [] args)
		{
			var generator = Generator.GetGenerator ("Eto.Platform.Windows.Generator, Eto.Platform.Windows");
			
			var app = new TestApplication (generator);
			app.Run (args);
		}
Beispiel #2
0
		static void Main(string[] args)
		{
			var platform = new Eto.Direct2D.Platform();
			var app = new TestApplication(platform);
			app.TestAssemblies.Add(typeof(Startup).Assembly);
			app.Run();
		}
Beispiel #3
0
		static void Main(string[] args)
		{
			var platform = Platform.Get(Platforms.WinForms);
			var app = new TestApplication(platform);
			app.TestAssemblies.Add(typeof(Startup).Assembly);
			app.Run();
		}
Beispiel #4
0
		//[STAThread]
		static void Main(string[] args)
		{
			var generator = new Eto.GtkSharp.Platform();
			
			var app = new TestApplication(generator);
			app.TestAssemblies.Add(typeof(Startup).Assembly);
			app.Run();
		}
Beispiel #5
0
		//[STAThread]
		static void Main(string[] args)
		{
#if DEBUG
			Debug.Listeners.Add(new ConsoleTraceListener());
#endif
			var generator = Platform.Get(Platforms.Gtk3);
			
			var app = new TestApplication(generator);
			app.Run();
		}
Beispiel #6
0
		//[STAThread]
		static void Main (string [] args)
		{
#if DEBUG
			Debug.Listeners.Add (new ConsoleTraceListener());
#endif
			var generator = Generator.GetGenerator (Generators.Gtk3Assembly);
			
			var app = new TestApplication (generator);
			app.Run (args);
		}
Beispiel #7
0
		static void Main(string[] args)
		{
			var generator = Platform.Get(Platforms.WinForms);
			var app = new TestApplication(generator);
			app.Run();
		}
Beispiel #8
0
		static void Main (string [] args)
		{
			var generator = Generator.GetGenerator(Generators.Direct2DAssembly);
			var app = new TestApplication (generator);
			app.Run (args);
		}