hytos / ID2.Manager / ID2.Manager / Program.cs @ 3513fbb7
이력 | 보기 | 이력해설 | 다운로드 (976 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Threading.Tasks; |
5 |
using System.Windows.Forms; |
6 |
using ID2.Manager.Common; |
7 |
using ID2.Manager.Forms; |
8 |
|
9 |
namespace ID2.Manager |
10 |
{ |
11 |
static class Program |
12 |
{ |
13 |
|
14 |
public static Informations informations = Informations.Instance; |
15 |
public static bool IsSearch = false; |
16 |
|
17 |
/// <summary> |
18 |
/// 해당 애플리케이션의 주 진입점입니다. |
19 |
/// </summary> |
20 |
[STAThread] |
21 |
static void Main() |
22 |
{ |
23 |
devDept.LicenseManager.Unlock(typeof(devDept.Eyeshot.Workspace), "US22-CKTU9-RX12F-3SF6-R1X9"); |
24 |
|
25 |
Application.EnableVisualStyles(); |
26 |
Application.SetCompatibleTextRenderingDefault(false); |
27 |
|
28 |
using (Login frm = new Login()) |
29 |
{ |
30 |
if (frm.ShowDialog() == DialogResult.OK) |
31 |
{ |
32 |
Application.Run(new Main()); |
33 |
} |
34 |
} |
35 |
} |
36 |
} |
37 |
} |