hytos / DTI_PID / Dwg2Igr / Program.cs @ bded697f
이력 | 보기 | 이력해설 | 다운로드 (1016 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.IO; |
4 |
using System.Linq; |
5 |
using System.Threading; |
6 |
using System.Threading.Tasks; |
7 |
using System.Windows.Forms; |
8 |
|
9 |
|
10 |
namespace Dwg2Igr |
11 |
{ |
12 |
static class Program |
13 |
{ |
14 |
/// <summary> |
15 |
/// 해당 애플리케이션의 주 진입점입니다. |
16 |
/// </summary> |
17 |
[STAThread] |
18 |
static int Main(string[] args) |
19 |
{ |
20 |
//Application.EnableVisualStyles(); |
21 |
//Application.SetCompatibleTextRenderingDefault(false); |
22 |
|
23 |
if (args == null || args.Length == 0) |
24 |
{ |
25 |
return -1; |
26 |
} |
27 |
string dwgFilePath = args[0]; |
28 |
//string dwgFilePath = @"D:\01.Ref\03.SECL_FF_PID\Test\detail1.dwg"; |
29 |
if (!File.Exists(dwgFilePath.Replace("^", " "))) |
30 |
{ |
31 |
return -1; |
32 |
} |
33 |
|
34 |
Launcher form = new Launcher(dwgFilePath); |
35 |
//Application.Run(new Form1()); |
36 |
return form.ResultCode; |
37 |
} |
38 |
} |
39 |
} |