Client/Program.cs
author sl
Wed, 13 Aug 2014 23:02:40 +0200
changeset 20 e3d394dd0388
child 21 274a6b27c3f9
permissions -rw-r--r--
Now support duplex mode with new client.
sl@18
     1
using System;
sl@18
     2
using System.Collections.Generic;
sl@18
     3
using System.Linq;
sl@18
     4
using System.Threading.Tasks;
sl@18
     5
using System.Windows.Forms;
sl@18
     6
sl@18
     7
namespace SharpDisplayClient
sl@18
     8
{
sl@18
     9
    static class Program
sl@18
    10
    {
sl@18
    11
        /// <summary>
sl@18
    12
        /// The main entry point for the application.
sl@18
    13
        /// </summary>
sl@18
    14
        [STAThread]
sl@18
    15
        static void Main()
sl@18
    16
        {
sl@18
    17
            Application.EnableVisualStyles();
sl@18
    18
            Application.SetCompatibleTextRenderingDefault(false);
sl@18
    19
            Application.Run(new MainForm());
sl@18
    20
        }
sl@18
    21
    }
sl@18
    22
}