diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/QRForm.Designer.cs	Mon Oct 13 21:28:19 2014 -0500
@@ -0,0 +1,352 @@
+namespace QuickQR
+{
+    partial class QRForm
+    {
+        /// <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(QRForm));
+            this.QRImage = new System.Windows.Forms.PictureBox();
+            this.imageMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
+            this.imageCopy = new System.Windows.Forms.ToolStripMenuItem();
+            this.imageSaveAs = new System.Windows.Forms.ToolStripMenuItem();
+            this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
+            this.notifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
+            this.menuAutorun = new System.Windows.Forms.ToolStripMenuItem();
+            this.menuHotkey = new System.Windows.Forms.ToolStripMenuItem();
+            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+            this.menuGenerateClipboard = new System.Windows.Forms.ToolStripMenuItem();
+            this.menuNew = new System.Windows.Forms.ToolStripMenuItem();
+            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+            this.inputTextBox = new System.Windows.Forms.TextBox();
+            this.generateButton = new System.Windows.Forms.Button();
+            this.windowMenu = new System.Windows.Forms.MenuStrip();
+            this.fileMenu = new System.Windows.Forms.ToolStripMenuItem();
+            this.fileSaveAs = new System.Windows.Forms.ToolStripMenuItem();
+            this.fileSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+            this.fileHide = new System.Windows.Forms.ToolStripMenuItem();
+            this.fileExit = new System.Windows.Forms.ToolStripMenuItem();
+            this.optionsMenu = new System.Windows.Forms.ToolStripMenuItem();
+            this.optionWinStart = new System.Windows.Forms.ToolStripMenuItem();
+            this.optionBackground = new System.Windows.Forms.ToolStripMenuItem();
+            this.optionHotkey = new System.Windows.Forms.ToolStripMenuItem();
+            this.helpMenu = new System.Windows.Forms.ToolStripMenuItem();
+            this.helpAbout = new System.Windows.Forms.ToolStripMenuItem();
+            this.QRLabel = new System.Windows.Forms.Label();
+            ((System.ComponentModel.ISupportInitialize)(this.QRImage)).BeginInit();
+            this.imageMenu.SuspendLayout();
+            this.notifyMenu.SuspendLayout();
+            this.windowMenu.SuspendLayout();
+            this.SuspendLayout();
+            // 
+            // QRImage
+            // 
+            this.QRImage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
+            | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.QRImage.BackColor = System.Drawing.Color.White;
+            this.QRImage.ContextMenuStrip = this.imageMenu;
+            this.QRImage.Location = new System.Drawing.Point(0, 68);
+            this.QRImage.Name = "QRImage";
+            this.QRImage.Size = new System.Drawing.Size(300, 300);
+            this.QRImage.TabIndex = 0;
+            this.QRImage.TabStop = false;
+            // 
+            // imageMenu
+            // 
+            this.imageMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.imageCopy,
+            this.imageSaveAs});
+            this.imageMenu.Name = "imageMenu";
+            this.imageMenu.Size = new System.Drawing.Size(124, 48);
+            // 
+            // imageCopy
+            // 
+            this.imageCopy.Name = "imageCopy";
+            this.imageCopy.Size = new System.Drawing.Size(123, 22);
+            this.imageCopy.Text = "&Copy";
+            this.imageCopy.Click += new System.EventHandler(this.imageCopy_Click);
+            // 
+            // imageSaveAs
+            // 
+            this.imageSaveAs.Name = "imageSaveAs";
+            this.imageSaveAs.Size = new System.Drawing.Size(123, 22);
+            this.imageSaveAs.Text = "&Save As...";
+            this.imageSaveAs.Click += new System.EventHandler(this.imageSaveAs_Click);
+            // 
+            // notifyIcon
+            // 
+            this.notifyIcon.ContextMenuStrip = this.notifyMenu;
+            this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
+            this.notifyIcon.Text = "QuickQR";
+            this.notifyIcon.Visible = true;
+            this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
+            // 
+            // notifyMenu
+            // 
+            this.notifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.menuAutorun,
+            this.menuHotkey,
+            this.toolStripSeparator1,
+            this.menuGenerateClipboard,
+            this.menuNew,
+            this.exitToolStripMenuItem});
+            this.notifyMenu.Name = "notifyMenu";
+            this.notifyMenu.ShowCheckMargin = true;
+            this.notifyMenu.ShowImageMargin = false;
+            this.notifyMenu.Size = new System.Drawing.Size(178, 120);
+            // 
+            // menuAutorun
+            // 
+            this.menuAutorun.Name = "menuAutorun";
+            this.menuAutorun.Size = new System.Drawing.Size(177, 22);
+            this.menuAutorun.Text = "&Start with Windows";
+            this.menuAutorun.Click += new System.EventHandler(this.menuAutorun_Click);
+            // 
+            // menuHotkey
+            // 
+            this.menuHotkey.Name = "menuHotkey";
+            this.menuHotkey.Size = new System.Drawing.Size(177, 22);
+            this.menuHotkey.Text = "Set Global &Hotkey...";
+            this.menuHotkey.Click += new System.EventHandler(this.menuHotkey_Click);
+            // 
+            // toolStripSeparator1
+            // 
+            this.toolStripSeparator1.Name = "toolStripSeparator1";
+            this.toolStripSeparator1.Size = new System.Drawing.Size(174, 6);
+            // 
+            // menuGenerateClipboard
+            // 
+            this.menuGenerateClipboard.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
+            this.menuGenerateClipboard.Name = "menuGenerateClipboard";
+            this.menuGenerateClipboard.Size = new System.Drawing.Size(177, 22);
+            this.menuGenerateClipboard.Text = "QR from &Clipboard";
+            this.menuGenerateClipboard.Click += new System.EventHandler(this.menuGenerateClipboard_Click);
+            // 
+            // menuNew
+            // 
+            this.menuNew.Name = "menuNew";
+            this.menuNew.Size = new System.Drawing.Size(177, 22);
+            this.menuNew.Text = "&New QR code...";
+            this.menuNew.Click += new System.EventHandler(this.menuNew_Click);
+            // 
+            // exitToolStripMenuItem
+            // 
+            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
+            this.exitToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
+            this.exitToolStripMenuItem.Text = "E&xit";
+            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
+            // 
+            // inputTextBox
+            // 
+            this.inputTextBox.Anchor = System.Windows.Forms.AnchorStyles.Top;
+            this.inputTextBox.Location = new System.Drawing.Point(12, 36);
+            this.inputTextBox.Name = "inputTextBox";
+            this.inputTextBox.Size = new System.Drawing.Size(195, 20);
+            this.inputTextBox.TabIndex = 1;
+            this.inputTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.inputTextBox_KeyDown);
+            // 
+            // generateButton
+            // 
+            this.generateButton.Anchor = System.Windows.Forms.AnchorStyles.Top;
+            this.generateButton.Location = new System.Drawing.Point(213, 34);
+            this.generateButton.Name = "generateButton";
+            this.generateButton.Size = new System.Drawing.Size(75, 23);
+            this.generateButton.TabIndex = 2;
+            this.generateButton.Text = "&Generate";
+            this.generateButton.UseVisualStyleBackColor = true;
+            this.generateButton.Click += new System.EventHandler(this.generateButton_Click);
+            // 
+            // windowMenu
+            // 
+            this.windowMenu.BackColor = System.Drawing.SystemColors.Control;
+            this.windowMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.fileMenu,
+            this.optionsMenu,
+            this.helpMenu});
+            this.windowMenu.Location = new System.Drawing.Point(0, 0);
+            this.windowMenu.Name = "windowMenu";
+            this.windowMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
+            this.windowMenu.Size = new System.Drawing.Size(300, 24);
+            this.windowMenu.TabIndex = 3;
+            this.windowMenu.Text = "menuStrip1";
+            // 
+            // fileMenu
+            // 
+            this.fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.fileSaveAs,
+            this.fileSeparator1,
+            this.fileHide,
+            this.fileExit});
+            this.fileMenu.Name = "fileMenu";
+            this.fileMenu.Size = new System.Drawing.Size(37, 20);
+            this.fileMenu.Text = "&File";
+            // 
+            // fileSaveAs
+            // 
+            this.fileSaveAs.Name = "fileSaveAs";
+            this.fileSaveAs.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
+            this.fileSaveAs.Size = new System.Drawing.Size(163, 22);
+            this.fileSaveAs.Text = "&Save As...";
+            this.fileSaveAs.Click += new System.EventHandler(this.fileSaveAs_Click);
+            // 
+            // fileSeparator1
+            // 
+            this.fileSeparator1.Name = "fileSeparator1";
+            this.fileSeparator1.Size = new System.Drawing.Size(160, 6);
+            // 
+            // fileHide
+            // 
+            this.fileHide.Name = "fileHide";
+            this.fileHide.Size = new System.Drawing.Size(163, 22);
+            this.fileHide.Text = "&Hide";
+            this.fileHide.Click += new System.EventHandler(this.fileHide_Click);
+            // 
+            // fileExit
+            // 
+            this.fileExit.Name = "fileExit";
+            this.fileExit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
+            this.fileExit.Size = new System.Drawing.Size(163, 22);
+            this.fileExit.Text = "E&xit";
+            this.fileExit.Click += new System.EventHandler(this.fileExit_Click);
+            // 
+            // optionsMenu
+            // 
+            this.optionsMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.optionWinStart,
+            this.optionBackground,
+            this.optionHotkey});
+            this.optionsMenu.Name = "optionsMenu";
+            this.optionsMenu.Size = new System.Drawing.Size(61, 20);
+            this.optionsMenu.Text = "&Options";
+            // 
+            // optionWinStart
+            // 
+            this.optionWinStart.Name = "optionWinStart";
+            this.optionWinStart.Size = new System.Drawing.Size(228, 22);
+            this.optionWinStart.Text = "&Start with Windows";
+            this.optionWinStart.Click += new System.EventHandler(this.optionWinStart_Click);
+            // 
+            // optionBackground
+            // 
+            this.optionBackground.Name = "optionBackground";
+            this.optionBackground.Size = new System.Drawing.Size(228, 22);
+            this.optionBackground.Text = "&Keep Running in Background";
+            this.optionBackground.Click += new System.EventHandler(this.optionBackground_Click);
+            // 
+            // optionHotkey
+            // 
+            this.optionHotkey.Name = "optionHotkey";
+            this.optionHotkey.Size = new System.Drawing.Size(228, 22);
+            this.optionHotkey.Text = "Set Global &Hotkey...";
+            this.optionHotkey.Click += new System.EventHandler(this.optionHotkey_Click);
+            // 
+            // helpMenu
+            // 
+            this.helpMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.helpAbout});
+            this.helpMenu.Name = "helpMenu";
+            this.helpMenu.Size = new System.Drawing.Size(44, 20);
+            this.helpMenu.Text = "&Help";
+            // 
+            // helpAbout
+            // 
+            this.helpAbout.Name = "helpAbout";
+            this.helpAbout.Size = new System.Drawing.Size(152, 22);
+            this.helpAbout.Text = "&About";
+            this.helpAbout.Click += new System.EventHandler(this.helpAbout_Click);
+            // 
+            // QRLabel
+            // 
+            this.QRLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.QRLabel.Location = new System.Drawing.Point(0, 374);
+            this.QRLabel.Name = "QRLabel";
+            this.QRLabel.Size = new System.Drawing.Size(300, 13);
+            this.QRLabel.TabIndex = 4;
+            this.QRLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+            // 
+            // QRForm
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
+            this.ClientSize = new System.Drawing.Size(300, 396);
+            this.Controls.Add(this.QRLabel);
+            this.Controls.Add(this.windowMenu);
+            this.Controls.Add(this.generateButton);
+            this.Controls.Add(this.inputTextBox);
+            this.Controls.Add(this.QRImage);
+            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+            this.MainMenuStrip = this.windowMenu;
+            this.Name = "QRForm";
+            this.Text = "QuickQR";
+            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.QRForm_FormClosing);
+            this.Load += new System.EventHandler(this.QRForm_Load);
+            this.Resize += new System.EventHandler(this.QRForm_Resize);
+            ((System.ComponentModel.ISupportInitialize)(this.QRImage)).EndInit();
+            this.imageMenu.ResumeLayout(false);
+            this.notifyMenu.ResumeLayout(false);
+            this.windowMenu.ResumeLayout(false);
+            this.windowMenu.PerformLayout();
+            this.ResumeLayout(false);
+            this.PerformLayout();
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.PictureBox QRImage;
+        private System.Windows.Forms.NotifyIcon notifyIcon;
+        private System.Windows.Forms.ContextMenuStrip notifyMenu;
+        private System.Windows.Forms.ToolStripMenuItem menuGenerateClipboard;
+        private System.Windows.Forms.ToolStripMenuItem menuNew;
+        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
+        private System.Windows.Forms.ToolStripMenuItem menuAutorun;
+        private System.Windows.Forms.ToolStripMenuItem menuHotkey;
+        private System.Windows.Forms.TextBox inputTextBox;
+        private System.Windows.Forms.Button generateButton;
+        private System.Windows.Forms.MenuStrip windowMenu;
+        private System.Windows.Forms.ToolStripMenuItem optionsMenu;
+        private System.Windows.Forms.ToolStripMenuItem optionWinStart;
+        private System.Windows.Forms.ToolStripMenuItem helpMenu;
+        private System.Windows.Forms.ToolStripMenuItem optionHotkey;
+        private System.Windows.Forms.ToolStripMenuItem helpAbout;
+        private System.Windows.Forms.ToolStripMenuItem fileMenu;
+        private System.Windows.Forms.ToolStripMenuItem fileHide;
+        private System.Windows.Forms.ToolStripMenuItem fileExit;
+        private System.Windows.Forms.Label QRLabel;
+        private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
+        private System.Windows.Forms.ToolStripMenuItem optionBackground;
+        private System.Windows.Forms.ToolStripMenuItem fileSaveAs;
+        private System.Windows.Forms.ToolStripSeparator fileSeparator1;
+        private System.Windows.Forms.ContextMenuStrip imageMenu;
+        private System.Windows.Forms.ToolStripMenuItem imageCopy;
+        private System.Windows.Forms.ToolStripMenuItem imageSaveAs;
+    }
+}
+