From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- ImageProcessing/Program.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ImageProcessing/Program.cs (limited to 'ImageProcessing/Program.cs') diff --git a/ImageProcessing/Program.cs b/ImageProcessing/Program.cs new file mode 100644 index 0000000..afd6001 --- /dev/null +++ b/ImageProcessing/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace ImageProcessing +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FormImageProcessing()); + } + } +} -- cgit v1.1