about summary refs log tree commit diff
path: root/paint_job_estimator/Paint Job Estimator/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commitc7e121115545238780ed9d8359fa966e6335675e (patch)
treeffc9c646fbc0a540097542cf49c44a5531ac7589 /paint_job_estimator/Paint Job Estimator/Program.cs
parentdistance file (diff)
downloadwf-c7e121115545238780ed9d8359fa966e6335675e.tar
wf-c7e121115545238780ed9d8359fa966e6335675e.tar.gz
wf-c7e121115545238780ed9d8359fa966e6335675e.tar.bz2
wf-c7e121115545238780ed9d8359fa966e6335675e.tar.xz
wf-c7e121115545238780ed9d8359fa966e6335675e.zip
paint job estimator
Diffstat (limited to 'paint_job_estimator/Paint Job Estimator/Program.cs')
-rw-r--r--paint_job_estimator/Paint Job Estimator/Program.cs22
1 files changed, 22 insertions, 0 deletions
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

+    {

+        /// <summary>

+        /// The main entry point for the application.

+        /// </summary>

+        [STAThread]

+        static void Main()

+        {

+            Application.EnableVisualStyles();

+            Application.SetCompatibleTextRenderingDefault(false);

+            Application.Run(new paintJobEstimator());

+        }

+    }

+}