-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
58 lines (49 loc) · 1.91 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* Rozpoczêcie pracy programu
* Kod identyfikacyjny uczestnika: 304079
*/
using ConsoleMode;
using GUI;
using ProgramConfiguration;
using System;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Forms;
namespace Przetwarzanie_plikow_PDF {
internal static class Program {
[DllImport("kernel32.dll")]
static extern IntPtr GetConsoleWindow();
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
const int SW_HIDE = 0;
const int SW_SHOW = 5;
static void Main(string[] args) {
if(args.Length == 0)
ProgramSettings.isWindowedApplication = true;
Console.WriteLine("£adowanie ustawieñ programu...");
ProgramSettings.Init();
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
var handle = GetConsoleWindow();
//Je¿eli wywo³ano z parametrami program dzia³a w trybie konsoli, je¿eli bez w oknie GUI
if (args.Length == 0) {
Console.WriteLine("Nie wprowadzono ¿adnych argumentów");
Console.WriteLine("Za chwilê poka¿e siê okno programu");
ShowWindow(handle, SW_HIDE);
Thread th = new Thread((ThreadStart)(() => {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainWindow());
}));
th.SetApartmentState(ApartmentState.STA);
th.Start();
th.Join();
} else {
ShowWindow(handle, SW_SHOW);
ProgramSettings.isWindowedApplication = false;
MainMenuConsole console = new MainMenuConsole(args);
Console.ReadLine();
}
}
}
}