static int Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); app = new TiaStarter(); //Application.Run(new Form1()); app.StartUpPowerManagementThread(); app.Run(new Form1()); return(0); }
static int Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var currentDomain = AppDomain.CurrentDomain; currentDomain.AssemblyLoad += CurrentDomain_AssemblyLoad; app = new TiaStarter(); app.StartUpPowerManagementThread(); app.Run(new ShowModuleStateForm()); return(0); }