ShareX/ShareX.HelpersLib/Forms/QRCodeForm.Designer.cs

102 lines
4.2 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2014-05-21 09:25:06 +12:00
{
partial class QRCodeForm
{
/// <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(QRCodeForm));
2014-05-21 09:25:06 +12:00
this.qrMain = new Gma.QrCodeNet.Encoding.Windows.Forms.QrCodeGraphicControl();
this.cmsQR = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiCopy = new System.Windows.Forms.ToolStripMenuItem();
2014-06-26 08:45:57 +12:00
this.tsmiSaveAs = new System.Windows.Forms.ToolStripMenuItem();
this.txtQRCode = new System.Windows.Forms.TextBox();
this.cmsQR.SuspendLayout();
2014-05-21 09:25:06 +12:00
this.SuspendLayout();
//
// qrMain
//
resources.ApplyResources(this.qrMain, "qrMain");
this.qrMain.ContextMenuStrip = this.cmsQR;
2014-05-21 09:25:06 +12:00
this.qrMain.ErrorCorrectLevel = Gma.QrCodeNet.Encoding.ErrorCorrectionLevel.M;
this.qrMain.Name = "qrMain";
this.qrMain.QuietZoneModule = Gma.QrCodeNet.Encoding.Windows.Render.QuietZoneModules.Two;
this.qrMain.Click += new System.EventHandler(this.qrMain_Click);
2014-05-21 09:25:06 +12:00
//
// cmsQR
//
this.cmsQR.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiCopy,
this.tsmiSaveAs});
this.cmsQR.Name = "cmsQR";
2014-07-19 09:38:30 +12:00
this.cmsQR.ShowImageMargin = false;
resources.ApplyResources(this.cmsQR, "cmsQR");
//
2014-06-26 08:45:57 +12:00
// tsmiCopy
//
this.tsmiCopy.Name = "tsmiCopy";
resources.ApplyResources(this.tsmiCopy, "tsmiCopy");
2014-06-26 08:45:57 +12:00
this.tsmiCopy.Click += new System.EventHandler(this.tsmiCopy_Click);
//
// tsmiSaveAs
//
this.tsmiSaveAs.Name = "tsmiSaveAs";
resources.ApplyResources(this.tsmiSaveAs, "tsmiSaveAs");
this.tsmiSaveAs.Click += new System.EventHandler(this.tsmiSaveAs_Click);
//
2014-06-26 08:45:57 +12:00
// txtQRCode
//
2014-06-26 08:45:57 +12:00
this.txtQRCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
resources.ApplyResources(this.txtQRCode, "txtQRCode");
2014-06-26 08:45:57 +12:00
this.txtQRCode.Name = "txtQRCode";
this.txtQRCode.TextChanged += new System.EventHandler(this.txtQRCode_TextChanged);
//
2014-05-21 09:25:06 +12:00
// QRCodeForm
//
resources.ApplyResources(this, "$this");
2014-05-21 09:25:06 +12:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
2014-05-21 10:46:06 +12:00
this.Controls.Add(this.txtQRCode);
2014-05-21 09:25:06 +12:00
this.Controls.Add(this.qrMain);
this.Name = "QRCodeForm";
this.TopMost = true;
this.Resize += new System.EventHandler(this.QRCodeForm_Resize);
this.cmsQR.ResumeLayout(false);
2014-05-21 09:25:06 +12:00
this.ResumeLayout(false);
2014-05-21 10:46:06 +12:00
this.PerformLayout();
2014-05-21 09:25:06 +12:00
}
#endregion
private Gma.QrCodeNet.Encoding.Windows.Forms.QrCodeGraphicControl qrMain;
2014-05-21 10:46:06 +12:00
private System.Windows.Forms.TextBox txtQRCode;
private System.Windows.Forms.ContextMenuStrip cmsQR;
private System.Windows.Forms.ToolStripMenuItem tsmiCopy;
private System.Windows.Forms.ToolStripMenuItem tsmiSaveAs;
2014-05-21 09:25:06 +12:00
}
}