-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
146 lines (139 loc) · 7.58 KB
/
MainForm.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
namespace ScreenRotator {
partial class MainForm {
/// <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(MainForm));
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.noRotationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rotate90ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rotate180ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rotate270ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.startWithWindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// notifyIcon1
//
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "Screen Rotator";
this.notifyIcon1.Visible = true;
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
//
// contextMenuStrip1
//
this.contextMenuStrip1.AllowMerge = false;
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.noRotationToolStripMenuItem,
this.rotate90ToolStripMenuItem,
this.rotate180ToolStripMenuItem,
this.rotate270ToolStripMenuItem,
this.toolStripMenuItem1,
this.startWithWindowsToolStripMenuItem,
this.toolStripMenuItem2,
this.exitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(177, 148);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// noRotationToolStripMenuItem
//
this.noRotationToolStripMenuItem.Name = "noRotationToolStripMenuItem";
this.noRotationToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.noRotationToolStripMenuItem.Text = "No Rotation";
this.noRotationToolStripMenuItem.Click += new System.EventHandler(this.noRotationToolStripMenuItem_Click);
//
// rotate90ToolStripMenuItem
//
this.rotate90ToolStripMenuItem.Name = "rotate90ToolStripMenuItem";
this.rotate90ToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.rotate90ToolStripMenuItem.Text = "Rotate 90";
this.rotate90ToolStripMenuItem.Click += new System.EventHandler(this.rotate90ToolStripMenuItem_Click);
//
// rotate180ToolStripMenuItem
//
this.rotate180ToolStripMenuItem.Name = "rotate180ToolStripMenuItem";
this.rotate180ToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.rotate180ToolStripMenuItem.Text = "Rotate 180";
this.rotate180ToolStripMenuItem.Click += new System.EventHandler(this.rotate180ToolStripMenuItem_Click);
//
// rotate270ToolStripMenuItem
//
this.rotate270ToolStripMenuItem.Name = "rotate270ToolStripMenuItem";
this.rotate270ToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.rotate270ToolStripMenuItem.Text = "Rotate 270";
this.rotate270ToolStripMenuItem.Click += new System.EventHandler(this.rotate270ToolStripMenuItem_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(173, 6);
//
// startWithWindowsToolStripMenuItem
//
this.startWithWindowsToolStripMenuItem.Name = "startWithWindowsToolStripMenuItem";
this.startWithWindowsToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.startWithWindowsToolStripMenuItem.Text = "Start with Windows";
this.startWithWindowsToolStripMenuItem.Click += new System.EventHandler(this.startWithWindowsToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(173, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(318, 150);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MainForm";
this.Opacity = 0D;
this.ShowInTaskbar = false;
this.Text = "Screen Rotator";
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem noRotationToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem rotate90ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem rotate180ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem rotate270ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem startWithWindowsToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
}
}