Mercurial > quickqr
comparison QRForm.Designer.cs @ 0:aca8706f4eec default tip
Initial commit
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 13 Oct 2014 21:28:19 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:aca8706f4eec |
---|---|
1 namespace QuickQR | |
2 { | |
3 partial class QRForm | |
4 { | |
5 /// <summary> | |
6 /// Required designer variable. | |
7 /// </summary> | |
8 private System.ComponentModel.IContainer components = null; | |
9 | |
10 /// <summary> | |
11 /// Clean up any resources being used. | |
12 /// </summary> | |
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 protected override void Dispose(bool disposing) | |
15 { | |
16 if (disposing && (components != null)) | |
17 { | |
18 components.Dispose(); | |
19 } | |
20 base.Dispose(disposing); | |
21 } | |
22 | |
23 #region Windows Form Designer generated code | |
24 | |
25 /// <summary> | |
26 /// Required method for Designer support - do not modify | |
27 /// the contents of this method with the code editor. | |
28 /// </summary> | |
29 private void InitializeComponent() | |
30 { | |
31 this.components = new System.ComponentModel.Container(); | |
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QRForm)); | |
33 this.QRImage = new System.Windows.Forms.PictureBox(); | |
34 this.imageMenu = new System.Windows.Forms.ContextMenuStrip(this.components); | |
35 this.imageCopy = new System.Windows.Forms.ToolStripMenuItem(); | |
36 this.imageSaveAs = new System.Windows.Forms.ToolStripMenuItem(); | |
37 this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components); | |
38 this.notifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components); | |
39 this.menuAutorun = new System.Windows.Forms.ToolStripMenuItem(); | |
40 this.menuHotkey = new System.Windows.Forms.ToolStripMenuItem(); | |
41 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); | |
42 this.menuGenerateClipboard = new System.Windows.Forms.ToolStripMenuItem(); | |
43 this.menuNew = new System.Windows.Forms.ToolStripMenuItem(); | |
44 this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); | |
45 this.inputTextBox = new System.Windows.Forms.TextBox(); | |
46 this.generateButton = new System.Windows.Forms.Button(); | |
47 this.windowMenu = new System.Windows.Forms.MenuStrip(); | |
48 this.fileMenu = new System.Windows.Forms.ToolStripMenuItem(); | |
49 this.fileSaveAs = new System.Windows.Forms.ToolStripMenuItem(); | |
50 this.fileSeparator1 = new System.Windows.Forms.ToolStripSeparator(); | |
51 this.fileHide = new System.Windows.Forms.ToolStripMenuItem(); | |
52 this.fileExit = new System.Windows.Forms.ToolStripMenuItem(); | |
53 this.optionsMenu = new System.Windows.Forms.ToolStripMenuItem(); | |
54 this.optionWinStart = new System.Windows.Forms.ToolStripMenuItem(); | |
55 this.optionBackground = new System.Windows.Forms.ToolStripMenuItem(); | |
56 this.optionHotkey = new System.Windows.Forms.ToolStripMenuItem(); | |
57 this.helpMenu = new System.Windows.Forms.ToolStripMenuItem(); | |
58 this.helpAbout = new System.Windows.Forms.ToolStripMenuItem(); | |
59 this.QRLabel = new System.Windows.Forms.Label(); | |
60 ((System.ComponentModel.ISupportInitialize)(this.QRImage)).BeginInit(); | |
61 this.imageMenu.SuspendLayout(); | |
62 this.notifyMenu.SuspendLayout(); | |
63 this.windowMenu.SuspendLayout(); | |
64 this.SuspendLayout(); | |
65 // | |
66 // QRImage | |
67 // | |
68 this.QRImage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | |
69 | System.Windows.Forms.AnchorStyles.Left) | |
70 | System.Windows.Forms.AnchorStyles.Right))); | |
71 this.QRImage.BackColor = System.Drawing.Color.White; | |
72 this.QRImage.ContextMenuStrip = this.imageMenu; | |
73 this.QRImage.Location = new System.Drawing.Point(0, 68); | |
74 this.QRImage.Name = "QRImage"; | |
75 this.QRImage.Size = new System.Drawing.Size(300, 300); | |
76 this.QRImage.TabIndex = 0; | |
77 this.QRImage.TabStop = false; | |
78 // | |
79 // imageMenu | |
80 // | |
81 this.imageMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
82 this.imageCopy, | |
83 this.imageSaveAs}); | |
84 this.imageMenu.Name = "imageMenu"; | |
85 this.imageMenu.Size = new System.Drawing.Size(124, 48); | |
86 // | |
87 // imageCopy | |
88 // | |
89 this.imageCopy.Name = "imageCopy"; | |
90 this.imageCopy.Size = new System.Drawing.Size(123, 22); | |
91 this.imageCopy.Text = "&Copy"; | |
92 this.imageCopy.Click += new System.EventHandler(this.imageCopy_Click); | |
93 // | |
94 // imageSaveAs | |
95 // | |
96 this.imageSaveAs.Name = "imageSaveAs"; | |
97 this.imageSaveAs.Size = new System.Drawing.Size(123, 22); | |
98 this.imageSaveAs.Text = "&Save As..."; | |
99 this.imageSaveAs.Click += new System.EventHandler(this.imageSaveAs_Click); | |
100 // | |
101 // notifyIcon | |
102 // | |
103 this.notifyIcon.ContextMenuStrip = this.notifyMenu; | |
104 this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon"))); | |
105 this.notifyIcon.Text = "QuickQR"; | |
106 this.notifyIcon.Visible = true; | |
107 this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick); | |
108 // | |
109 // notifyMenu | |
110 // | |
111 this.notifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
112 this.menuAutorun, | |
113 this.menuHotkey, | |
114 this.toolStripSeparator1, | |
115 this.menuGenerateClipboard, | |
116 this.menuNew, | |
117 this.exitToolStripMenuItem}); | |
118 this.notifyMenu.Name = "notifyMenu"; | |
119 this.notifyMenu.ShowCheckMargin = true; | |
120 this.notifyMenu.ShowImageMargin = false; | |
121 this.notifyMenu.Size = new System.Drawing.Size(178, 120); | |
122 // | |
123 // menuAutorun | |
124 // | |
125 this.menuAutorun.Name = "menuAutorun"; | |
126 this.menuAutorun.Size = new System.Drawing.Size(177, 22); | |
127 this.menuAutorun.Text = "&Start with Windows"; | |
128 this.menuAutorun.Click += new System.EventHandler(this.menuAutorun_Click); | |
129 // | |
130 // menuHotkey | |
131 // | |
132 this.menuHotkey.Name = "menuHotkey"; | |
133 this.menuHotkey.Size = new System.Drawing.Size(177, 22); | |
134 this.menuHotkey.Text = "Set Global &Hotkey..."; | |
135 this.menuHotkey.Click += new System.EventHandler(this.menuHotkey_Click); | |
136 // | |
137 // toolStripSeparator1 | |
138 // | |
139 this.toolStripSeparator1.Name = "toolStripSeparator1"; | |
140 this.toolStripSeparator1.Size = new System.Drawing.Size(174, 6); | |
141 // | |
142 // menuGenerateClipboard | |
143 // | |
144 this.menuGenerateClipboard.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold); | |
145 this.menuGenerateClipboard.Name = "menuGenerateClipboard"; | |
146 this.menuGenerateClipboard.Size = new System.Drawing.Size(177, 22); | |
147 this.menuGenerateClipboard.Text = "QR from &Clipboard"; | |
148 this.menuGenerateClipboard.Click += new System.EventHandler(this.menuGenerateClipboard_Click); | |
149 // | |
150 // menuNew | |
151 // | |
152 this.menuNew.Name = "menuNew"; | |
153 this.menuNew.Size = new System.Drawing.Size(177, 22); | |
154 this.menuNew.Text = "&New QR code..."; | |
155 this.menuNew.Click += new System.EventHandler(this.menuNew_Click); | |
156 // | |
157 // exitToolStripMenuItem | |
158 // | |
159 this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; | |
160 this.exitToolStripMenuItem.Size = new System.Drawing.Size(177, 22); | |
161 this.exitToolStripMenuItem.Text = "E&xit"; | |
162 this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); | |
163 // | |
164 // inputTextBox | |
165 // | |
166 this.inputTextBox.Anchor = System.Windows.Forms.AnchorStyles.Top; | |
167 this.inputTextBox.Location = new System.Drawing.Point(12, 36); | |
168 this.inputTextBox.Name = "inputTextBox"; | |
169 this.inputTextBox.Size = new System.Drawing.Size(195, 20); | |
170 this.inputTextBox.TabIndex = 1; | |
171 this.inputTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.inputTextBox_KeyDown); | |
172 // | |
173 // generateButton | |
174 // | |
175 this.generateButton.Anchor = System.Windows.Forms.AnchorStyles.Top; | |
176 this.generateButton.Location = new System.Drawing.Point(213, 34); | |
177 this.generateButton.Name = "generateButton"; | |
178 this.generateButton.Size = new System.Drawing.Size(75, 23); | |
179 this.generateButton.TabIndex = 2; | |
180 this.generateButton.Text = "&Generate"; | |
181 this.generateButton.UseVisualStyleBackColor = true; | |
182 this.generateButton.Click += new System.EventHandler(this.generateButton_Click); | |
183 // | |
184 // windowMenu | |
185 // | |
186 this.windowMenu.BackColor = System.Drawing.SystemColors.Control; | |
187 this.windowMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
188 this.fileMenu, | |
189 this.optionsMenu, | |
190 this.helpMenu}); | |
191 this.windowMenu.Location = new System.Drawing.Point(0, 0); | |
192 this.windowMenu.Name = "windowMenu"; | |
193 this.windowMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; | |
194 this.windowMenu.Size = new System.Drawing.Size(300, 24); | |
195 this.windowMenu.TabIndex = 3; | |
196 this.windowMenu.Text = "menuStrip1"; | |
197 // | |
198 // fileMenu | |
199 // | |
200 this.fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
201 this.fileSaveAs, | |
202 this.fileSeparator1, | |
203 this.fileHide, | |
204 this.fileExit}); | |
205 this.fileMenu.Name = "fileMenu"; | |
206 this.fileMenu.Size = new System.Drawing.Size(37, 20); | |
207 this.fileMenu.Text = "&File"; | |
208 // | |
209 // fileSaveAs | |
210 // | |
211 this.fileSaveAs.Name = "fileSaveAs"; | |
212 this.fileSaveAs.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); | |
213 this.fileSaveAs.Size = new System.Drawing.Size(163, 22); | |
214 this.fileSaveAs.Text = "&Save As..."; | |
215 this.fileSaveAs.Click += new System.EventHandler(this.fileSaveAs_Click); | |
216 // | |
217 // fileSeparator1 | |
218 // | |
219 this.fileSeparator1.Name = "fileSeparator1"; | |
220 this.fileSeparator1.Size = new System.Drawing.Size(160, 6); | |
221 // | |
222 // fileHide | |
223 // | |
224 this.fileHide.Name = "fileHide"; | |
225 this.fileHide.Size = new System.Drawing.Size(163, 22); | |
226 this.fileHide.Text = "&Hide"; | |
227 this.fileHide.Click += new System.EventHandler(this.fileHide_Click); | |
228 // | |
229 // fileExit | |
230 // | |
231 this.fileExit.Name = "fileExit"; | |
232 this.fileExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q))); | |
233 this.fileExit.Size = new System.Drawing.Size(163, 22); | |
234 this.fileExit.Text = "E&xit"; | |
235 this.fileExit.Click += new System.EventHandler(this.fileExit_Click); | |
236 // | |
237 // optionsMenu | |
238 // | |
239 this.optionsMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
240 this.optionWinStart, | |
241 this.optionBackground, | |
242 this.optionHotkey}); | |
243 this.optionsMenu.Name = "optionsMenu"; | |
244 this.optionsMenu.Size = new System.Drawing.Size(61, 20); | |
245 this.optionsMenu.Text = "&Options"; | |
246 // | |
247 // optionWinStart | |
248 // | |
249 this.optionWinStart.Name = "optionWinStart"; | |
250 this.optionWinStart.Size = new System.Drawing.Size(228, 22); | |
251 this.optionWinStart.Text = "&Start with Windows"; | |
252 this.optionWinStart.Click += new System.EventHandler(this.optionWinStart_Click); | |
253 // | |
254 // optionBackground | |
255 // | |
256 this.optionBackground.Name = "optionBackground"; | |
257 this.optionBackground.Size = new System.Drawing.Size(228, 22); | |
258 this.optionBackground.Text = "&Keep Running in Background"; | |
259 this.optionBackground.Click += new System.EventHandler(this.optionBackground_Click); | |
260 // | |
261 // optionHotkey | |
262 // | |
263 this.optionHotkey.Name = "optionHotkey"; | |
264 this.optionHotkey.Size = new System.Drawing.Size(228, 22); | |
265 this.optionHotkey.Text = "Set Global &Hotkey..."; | |
266 this.optionHotkey.Click += new System.EventHandler(this.optionHotkey_Click); | |
267 // | |
268 // helpMenu | |
269 // | |
270 this.helpMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { | |
271 this.helpAbout}); | |
272 this.helpMenu.Name = "helpMenu"; | |
273 this.helpMenu.Size = new System.Drawing.Size(44, 20); | |
274 this.helpMenu.Text = "&Help"; | |
275 // | |
276 // helpAbout | |
277 // | |
278 this.helpAbout.Name = "helpAbout"; | |
279 this.helpAbout.Size = new System.Drawing.Size(152, 22); | |
280 this.helpAbout.Text = "&About"; | |
281 this.helpAbout.Click += new System.EventHandler(this.helpAbout_Click); | |
282 // | |
283 // QRLabel | |
284 // | |
285 this.QRLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | |
286 | System.Windows.Forms.AnchorStyles.Right))); | |
287 this.QRLabel.Location = new System.Drawing.Point(0, 374); | |
288 this.QRLabel.Name = "QRLabel"; | |
289 this.QRLabel.Size = new System.Drawing.Size(300, 13); | |
290 this.QRLabel.TabIndex = 4; | |
291 this.QRLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; | |
292 // | |
293 // QRForm | |
294 // | |
295 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
296 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
297 this.BackColor = System.Drawing.SystemColors.GradientActiveCaption; | |
298 this.ClientSize = new System.Drawing.Size(300, 396); | |
299 this.Controls.Add(this.QRLabel); | |
300 this.Controls.Add(this.windowMenu); | |
301 this.Controls.Add(this.generateButton); | |
302 this.Controls.Add(this.inputTextBox); | |
303 this.Controls.Add(this.QRImage); | |
304 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); | |
305 this.MainMenuStrip = this.windowMenu; | |
306 this.Name = "QRForm"; | |
307 this.Text = "QuickQR"; | |
308 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.QRForm_FormClosing); | |
309 this.Load += new System.EventHandler(this.QRForm_Load); | |
310 this.Resize += new System.EventHandler(this.QRForm_Resize); | |
311 ((System.ComponentModel.ISupportInitialize)(this.QRImage)).EndInit(); | |
312 this.imageMenu.ResumeLayout(false); | |
313 this.notifyMenu.ResumeLayout(false); | |
314 this.windowMenu.ResumeLayout(false); | |
315 this.windowMenu.PerformLayout(); | |
316 this.ResumeLayout(false); | |
317 this.PerformLayout(); | |
318 | |
319 } | |
320 | |
321 #endregion | |
322 | |
323 private System.Windows.Forms.PictureBox QRImage; | |
324 private System.Windows.Forms.NotifyIcon notifyIcon; | |
325 private System.Windows.Forms.ContextMenuStrip notifyMenu; | |
326 private System.Windows.Forms.ToolStripMenuItem menuGenerateClipboard; | |
327 private System.Windows.Forms.ToolStripMenuItem menuNew; | |
328 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; | |
329 private System.Windows.Forms.ToolStripMenuItem menuAutorun; | |
330 private System.Windows.Forms.ToolStripMenuItem menuHotkey; | |
331 private System.Windows.Forms.TextBox inputTextBox; | |
332 private System.Windows.Forms.Button generateButton; | |
333 private System.Windows.Forms.MenuStrip windowMenu; | |
334 private System.Windows.Forms.ToolStripMenuItem optionsMenu; | |
335 private System.Windows.Forms.ToolStripMenuItem optionWinStart; | |
336 private System.Windows.Forms.ToolStripMenuItem helpMenu; | |
337 private System.Windows.Forms.ToolStripMenuItem optionHotkey; | |
338 private System.Windows.Forms.ToolStripMenuItem helpAbout; | |
339 private System.Windows.Forms.ToolStripMenuItem fileMenu; | |
340 private System.Windows.Forms.ToolStripMenuItem fileHide; | |
341 private System.Windows.Forms.ToolStripMenuItem fileExit; | |
342 private System.Windows.Forms.Label QRLabel; | |
343 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; | |
344 private System.Windows.Forms.ToolStripMenuItem optionBackground; | |
345 private System.Windows.Forms.ToolStripMenuItem fileSaveAs; | |
346 private System.Windows.Forms.ToolStripSeparator fileSeparator1; | |
347 private System.Windows.Forms.ContextMenuStrip imageMenu; | |
348 private System.Windows.Forms.ToolStripMenuItem imageCopy; | |
349 private System.Windows.Forms.ToolStripMenuItem imageSaveAs; | |
350 } | |
351 } | |
352 |