Client/Program.cs
changeset 18 7acec5059fa6
child 21 274a6b27c3f9
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Client/Program.cs	Tue Aug 12 20:55:50 2014 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +using System;
     1.5 +using System.Collections.Generic;
     1.6 +using System.Linq;
     1.7 +using System.Threading.Tasks;
     1.8 +using System.Windows.Forms;
     1.9 +
    1.10 +namespace SharpDisplayClient
    1.11 +{
    1.12 +    static class Program
    1.13 +    {
    1.14 +        /// <summary>
    1.15 +        /// The main entry point for the application.
    1.16 +        /// </summary>
    1.17 +        [STAThread]
    1.18 +        static void Main()
    1.19 +        {
    1.20 +            Application.EnableVisualStyles();
    1.21 +            Application.SetCompatibleTextRenderingDefault(false);
    1.22 +            Application.Run(new MainForm());
    1.23 +        }
    1.24 +    }
    1.25 +}