author | StephaneLenclud |
Mon, 28 Apr 2014 20:02:08 +0200 | |
changeset 5 | d16669f69f0d |
permissions | -rw-r--r-- |
sl@4 | 1 |
using System; |
sl@4 | 2 |
using System.Collections.Generic; |
sl@4 | 3 |
using System.Linq; |
sl@4 | 4 |
using System.Threading.Tasks; |
sl@4 | 5 |
using System.Windows.Forms; |
sl@4 | 6 |
|
sl@4 | 7 |
namespace IdwTest |
sl@4 | 8 |
{ |
sl@4 | 9 |
static class Program |
sl@4 | 10 |
{ |
sl@4 | 11 |
/// <summary> |
sl@4 | 12 |
/// The main entry point for the application. |
sl@4 | 13 |
/// </summary> |
sl@4 | 14 |
[STAThread] |
sl@4 | 15 |
static void Main() |
sl@4 | 16 |
{ |
sl@4 | 17 |
Application.EnableVisualStyles(); |
sl@4 | 18 |
Application.SetCompatibleTextRenderingDefault(false); |
sl@4 | 19 |
Application.Run(new MainForm()); |
sl@4 | 20 |
} |
sl@4 | 21 |
} |
sl@4 | 22 |
|
sl@4 | 23 |
} |