-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
36 lines (31 loc) · 1.08 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
using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
namespace Wrapper
{
internal static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// Determine path+name of wrapped executable
string dir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
string exe = AppDomain.CurrentDomain.FriendlyName;
exe = exe.Replace("_wrapper", "");
exe = Path.Combine(dir, exe);
// If the file doesn't exist we're done
if (!File.Exists(exe))
{
MessageBox.Show($"Bestand {exe} niet gevonden", "Fout", MessageBoxButtons.OK, MessageBoxIcon.Error);
Application.Exit();
return;
}
// Create the form, and pass it the path to the wrapped executable
MainForm form = new MainForm(exe);
Application.Run(form);
}
}
}