Program.cs
author sl
Sat, 14 Jun 2014 12:51:25 +0200
changeset 0 f6eca6facd07
child 17 19c1aaf900dc
permissions -rw-r--r--
First contrib.
sl@0
     1
using System;
sl@0
     2
using System.Collections.Generic;
sl@0
     3
using System.Linq;
sl@0
     4
using System.Threading.Tasks;
sl@0
     5
using System.Windows.Forms;
sl@0
     6
sl@0
     7
namespace SharpDisplayManager
sl@0
     8
{
sl@0
     9
    static class Program
sl@0
    10
    {
sl@0
    11
        /// <summary>
sl@0
    12
        /// The main entry point for the application.
sl@0
    13
        /// </summary>
sl@0
    14
        [STAThread]
sl@0
    15
        static void Main()
sl@0
    16
        {
sl@0
    17
            Application.EnableVisualStyles();
sl@0
    18
            Application.SetCompatibleTextRenderingDefault(false);
sl@0
    19
            Application.Run(new MainForm());
sl@0
    20
        }
sl@0
    21
    }
sl@0
    22
}