1
using System;
2
using System.Collections.Generic;
3
using System.Windows.Forms;
4
using BOM.NewUI;
5
using System.Threading;
6
7
namespace NewUI
8
{
9
static class Program
10
{
11
/// <summary>
12
/// 应用程序的主入口点。
13
/// </summary>
14
[STAThread]
15
static void Main()
16
{
17
try
18
{
19
//声明互斥体。
20
Mutex mutex = new Mutex(false, "ThisShouldOnlyRunOnce");
21
//判断互斥体是否使用中。
22
bool running = !mutex.WaitOne(0, false);
23
if (!running)
24
{
25
log4net.Config.XmlConfigurator.Configure();
26
Application.EnableVisualStyles();
27
Application.SetCompatibleTextRenderingDefault(false);
28
Thread.CurrentThread.Name = "GUI Main Thread";
29
Application.Run(new MainContext());
30
}
31
}
32
catch (Exception ex)
33
{
34
MessageBox.Show(ex.ToString());
35
log4net.LogManager.GetLogger("Main Thread").Error("error:", ex);
36
37
}
38
}
39
40
41
}
42
}

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
