-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCommandsMenu.Designer.cs
158 lines (151 loc) · 7.43 KB
/
CommandsMenu.Designer.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
namespace FreenetTray
{
partial class CommandsMenu
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CommandsMenu));
this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.openFreenetMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.startFreenetMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.stopFreenetMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.downloadsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewLogsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.preferencesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.hideIconMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu.SuspendLayout();
this.SuspendLayout();
//
// trayIcon
//
this.trayIcon.ContextMenuStrip = this.contextMenu;
resources.ApplyResources(this.trayIcon, "trayIcon");
this.trayIcon.MouseClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseClick);
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openFreenetMenuItem,
this.toolStripSeparator2,
this.startFreenetMenuItem,
this.stopFreenetMenuItem,
this.downloadsMenuItem,
this.viewLogsMenuItem,
this.toolStripSeparator1,
this.preferencesMenuItem,
this.hideIconMenuItem,
this.exitMenuItem});
this.contextMenu.Name = "contextMenu";
resources.ApplyResources(this.contextMenu, "contextMenu");
//
// openFreenetMenuItem
//
resources.ApplyResources(this.openFreenetMenuItem, "openFreenetMenuItem");
this.openFreenetMenuItem.Name = "openFreenetMenuItem";
this.openFreenetMenuItem.Click += new System.EventHandler(this.openFreenetMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
//
// startFreenetMenuItem
//
resources.ApplyResources(this.startFreenetMenuItem, "startFreenetMenuItem");
this.startFreenetMenuItem.Name = "startFreenetMenuItem";
this.startFreenetMenuItem.Click += new System.EventHandler(this.startFreenetMenuItem_Click);
//
// stopFreenetMenuItem
//
resources.ApplyResources(this.stopFreenetMenuItem, "stopFreenetMenuItem");
this.stopFreenetMenuItem.Name = "stopFreenetMenuItem";
this.stopFreenetMenuItem.Click += new System.EventHandler(this.stopFreenetMenuItem_Click);
//
// downloadsMenuItem
//
resources.ApplyResources(this.downloadsMenuItem, "downloadsMenuItem");
this.downloadsMenuItem.Name = "downloadsMenuItem";
this.downloadsMenuItem.Click += new System.EventHandler(this.downloadsMenuItem_Click);
//
// viewLogsMenuItem
//
resources.ApplyResources(this.viewLogsMenuItem, "viewLogsMenuItem");
this.viewLogsMenuItem.Name = "viewLogsMenuItem";
this.viewLogsMenuItem.Click += new System.EventHandler(this.viewLogsMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
//
// preferencesMenuItem
//
this.preferencesMenuItem.Name = "preferencesMenuItem";
resources.ApplyResources(this.preferencesMenuItem, "preferencesMenuItem");
this.preferencesMenuItem.Click += new System.EventHandler(this.preferencesMenuItem_Click);
//
// hideIconMenuItem
//
resources.ApplyResources(this.hideIconMenuItem, "hideIconMenuItem");
this.hideIconMenuItem.Name = "hideIconMenuItem";
this.hideIconMenuItem.Click += new System.EventHandler(this.hideIconMenuItem_Click);
//
// exitMenuItem
//
this.exitMenuItem.Name = "exitMenuItem";
resources.ApplyResources(this.exitMenuItem, "exitMenuItem");
this.exitMenuItem.Click += new System.EventHandler(this.exitMenuItem_Click);
//
// CommandsMenu
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "CommandsMenu";
this.ShowInTaskbar = false;
this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
this.Load += new System.EventHandler(this.CommandsMenu_Load);
this.contextMenu.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.NotifyIcon trayIcon;
private System.Windows.Forms.ContextMenuStrip contextMenu;
private System.Windows.Forms.ToolStripMenuItem openFreenetMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem startFreenetMenuItem;
private System.Windows.Forms.ToolStripMenuItem stopFreenetMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewLogsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem exitMenuItem;
private System.Windows.Forms.ToolStripMenuItem preferencesMenuItem;
private System.Windows.Forms.ToolStripMenuItem hideIconMenuItem;
private System.Windows.Forms.ToolStripMenuItem downloadsMenuItem;
}
}