ShareX/ShareX.HelpersLib/Forms/ClipboardContentViewer.Designer.cs

123 lines
5.2 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
partial class ClipboardContentViewer
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClipboardContentViewer));
2013-11-03 23:53:49 +13:00
this.lblQuestion = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.txtClipboard = new System.Windows.Forms.TextBox();
this.lbClipboard = new System.Windows.Forms.ListBox();
this.cbDontShowThisWindow = new System.Windows.Forms.CheckBox();
2015-09-02 05:37:54 +12:00
this.pbClipboard = new ShareX.HelpersLib.MyPictureBox();
2013-11-03 23:53:49 +13:00
this.SuspendLayout();
//
// lblQuestion
//
this.lblQuestion.BackColor = System.Drawing.Color.RoyalBlue;
resources.ApplyResources(this.lblQuestion, "lblQuestion");
2013-11-03 23:53:49 +13:00
this.lblQuestion.ForeColor = System.Drawing.Color.White;
this.lblQuestion.Name = "lblQuestion";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
2016-01-13 19:54:36 +13:00
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
2013-11-03 23:53:49 +13:00
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
2016-01-13 19:54:36 +13:00
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
2013-11-03 23:53:49 +13:00
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// txtClipboard
//
resources.ApplyResources(this.txtClipboard, "txtClipboard");
2013-11-03 23:53:49 +13:00
this.txtClipboard.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtClipboard.Name = "txtClipboard";
this.txtClipboard.ReadOnly = true;
2013-11-03 23:53:49 +13:00
//
// lbClipboard
//
resources.ApplyResources(this.lbClipboard, "lbClipboard");
2013-11-03 23:53:49 +13:00
this.lbClipboard.FormattingEnabled = true;
this.lbClipboard.Name = "lbClipboard";
//
// cbDontShowThisWindow
//
resources.ApplyResources(this.cbDontShowThisWindow, "cbDontShowThisWindow");
2013-11-03 23:53:49 +13:00
this.cbDontShowThisWindow.Name = "cbDontShowThisWindow";
this.cbDontShowThisWindow.UseVisualStyleBackColor = true;
this.cbDontShowThisWindow.CheckedChanged += new System.EventHandler(this.cbDontShowThisWindow_CheckedChanged);
//
// pbClipboard
//
resources.ApplyResources(this.pbClipboard, "pbClipboard");
2013-11-03 23:53:49 +13:00
this.pbClipboard.BackColor = System.Drawing.Color.White;
this.pbClipboard.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pbClipboard.DrawCheckeredBackground = true;
this.pbClipboard.FullscreenOnClick = true;
this.pbClipboard.Name = "pbClipboard";
//
// ClipboardContentViewer
//
this.AcceptButton = this.btnOK;
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.pbClipboard);
this.Controls.Add(this.cbDontShowThisWindow);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.lblQuestion);
this.Controls.Add(this.txtClipboard);
this.Controls.Add(this.lbClipboard);
this.MaximizeBox = false;
this.Name = "ClipboardContentViewer";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Load += new System.EventHandler(this.ClipboardContentViewer_Load);
this.Shown += new System.EventHandler(this.ClipboardContentViewer_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblQuestion;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
public System.Windows.Forms.TextBox txtClipboard;
private System.Windows.Forms.ListBox lbClipboard;
private System.Windows.Forms.CheckBox cbDontShowThisWindow;
private MyPictureBox pbClipboard;
}
}