-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultApp.cs
58 lines (46 loc) · 1.61 KB
/
DefaultApp.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
58
using MixerControllerF;
using System;
using System.Diagnostics;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
namespace MixerController {
public class DefaultApp : ApplicationContext {
private readonly NotifyIcon trayIcon;
public DefaultApp() {
MenuItem StartupItem = new MenuItem {
Checked = Startup.IsInStartup(),
Text = "Startup"
};
StartupItem.Click += new EventHandler(StartupClick);
trayIcon = new NotifyIcon() {
Icon = Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location),
ContextMenu = new ContextMenu(new MenuItem[] {
StartupItem,
new MenuItem("-"),
new MenuItem("Settings", Settings),
new MenuItem("-"),
new MenuItem("Exit", Exit)
}),
Visible = true
};
}
void Settings(object sender, EventArgs e) {
Process.Start("notepad.exe", Global.DEFAULT_PATH);
}
void Exit(object sender, EventArgs e) {
trayIcon.Visible = false;
Application.Exit();
}
void StartupClick(object sender, EventArgs e) {
MenuItem item = (MenuItem)sender;
if(item.Checked && Startup.IsInStartup()) {
Startup.RemoveFromStartup();
}
if(!item.Checked && !Startup.IsInStartup()) {
Startup.RunOnStartup();
}
item.Checked = !item.Checked;
}
}
}