static void Main (string [] args) { var generator = Generator.GetGenerator ("Eto.Platform.Windows.Generator, Eto.Platform.Windows"); var app = new TestApplication (generator); app.Run (args); }
static void Main(string[] args) { var platform = new Eto.Direct2D.Platform(); var app = new TestApplication(platform); app.TestAssemblies.Add(typeof(Startup).Assembly); app.Run(); }
static void Main(string[] args) { var platform = Platform.Get(Platforms.WinForms); var app = new TestApplication(platform); app.TestAssemblies.Add(typeof(Startup).Assembly); app.Run(); }
//[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(); }
//[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(); }
//[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); }
static void Main(string[] args) { var generator = Platform.Get(Platforms.WinForms); var app = new TestApplication(generator); app.Run(); }
static void Main (string [] args) { var generator = Generator.GetGenerator(Generators.Direct2DAssembly); var app = new TestApplication (generator); app.Run (args); }