From c7e121115545238780ed9d8359fa966e6335675e Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: paint job estimator --- paint_job_estimator/Paint Job Estimator/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 paint_job_estimator/Paint Job Estimator/Program.cs (limited to 'paint_job_estimator/Paint Job Estimator/Program.cs') diff --git a/paint_job_estimator/Paint Job Estimator/Program.cs b/paint_job_estimator/Paint Job Estimator/Program.cs new file mode 100644 index 0000000..13d2a38 --- /dev/null +++ b/paint_job_estimator/Paint Job Estimator/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Paint_Job_Estimator +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new paintJobEstimator()); + } + } +} -- cgit 1.4.1