-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.Designer.cs
More file actions
127 lines (122 loc) · 6.36 KB
/
Form2.Designer.cs
File metadata and controls
127 lines (122 loc) · 6.36 KB
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
namespace AlarmTo
{
partial class BootForm
{
/// <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(BootForm));
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.ContextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.mainMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.runInstMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// notifyIcon1
//
this.notifyIcon1.ContextMenuStrip = this.ContextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "AlarmTo";
this.notifyIcon1.Visible = true;
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
//
// ContextMenuStrip1
//
this.ContextMenuStrip1.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ContextMenuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.ContextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mainMenuItem,
this.runInstMenuItem,
this.helpMenuItem,
this.exitMenuItem});
this.ContextMenuStrip1.Name = "ContextMenuStrip1";
this.ContextMenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.ContextMenuStrip1.ShowImageMargin = false;
this.ContextMenuStrip1.Size = new System.Drawing.Size(337, 172);
this.ContextMenuStrip1.Text = "Exit";
//
// mainMenuItem
//
this.mainMenuItem.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.mainMenuItem.Name = "mainMenuItem";
this.mainMenuItem.Size = new System.Drawing.Size(336, 42);
this.mainMenuItem.Text = "Main Window";
this.mainMenuItem.Click += new System.EventHandler(this.showMenuItem_Click);
//
// runInstMenuItem
//
this.runInstMenuItem.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.runInstMenuItem.Name = "runInstMenuItem";
this.runInstMenuItem.Size = new System.Drawing.Size(336, 42);
this.runInstMenuItem.Text = "One-time Instance";
this.runInstMenuItem.Click += new System.EventHandler(this.runInstMenuItem_Click);
//
// helpMenuItem
//
this.helpMenuItem.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.helpMenuItem.Name = "helpMenuItem";
this.helpMenuItem.Size = new System.Drawing.Size(336, 42);
this.helpMenuItem.Text = "Help && License";
this.helpMenuItem.Click += new System.EventHandler(this.helpMenuItem_Click);
//
// exitMenuItem
//
this.exitMenuItem.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.exitMenuItem.Name = "exitMenuItem";
this.exitMenuItem.Size = new System.Drawing.Size(336, 42);
this.exitMenuItem.Text = "End";
this.exitMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// BootForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Silver;
this.ClientSize = new System.Drawing.Size(0, 0);
this.ControlBox = false;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "BootForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "Form2";
this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
this.Load += new System.EventHandler(this.Form2_Load);
this.ContextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip ContextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem exitMenuItem;
public System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ToolStripMenuItem mainMenuItem;
private System.Windows.Forms.ToolStripMenuItem runInstMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpMenuItem;
}
}