using System; using System.Windows.Forms; namespace Matrix_App { internal static class Program { /// /// The main entry point for the application. /// [STAThread] private static void Main() { SplashScreen.ShowSplashScreen(); Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var designer = new MatrixDesignerMain(); SplashScreen.CloseForm(); Application.Run(designer); } } }