| author | sl | 
| Thu, 14 Aug 2014 09:12:18 +0200 | |
| changeset 23 | bb8b0b9fa21b | 
| parent 18 | 7acec5059fa6 | 
| child 25 | 6f10207a89a8 | 
| permissions | -rw-r--r-- | 
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Threading.Tasks;
5 using System.Windows.Forms;
7 namespace SharpDisplayClient
8 {
9 static class Program
10 {
11 public static MainForm iMainForm;
13 /// <summary>
14 /// The main entry point for the application.
15 /// </summary>
16 [STAThread]
17 static void Main()
18 {
19 Application.EnableVisualStyles();
20 Application.SetCompatibleTextRenderingDefault(false);
21 iMainForm = new MainForm();
22 Application.Run(iMainForm);
23 }
24 }
25 }