namespace UI_WinForms; internal static class Program { [STAThread] private static void Main() { ApplicationConfiguration.Initialize(); // Start the loader screen: var loader = new Loader(); Application.Run(loader); // Start the main app: Application.Run(new Main()); } }