ShareX/HelpersLib/Forms/ClipboardFormatForm.Designer.cs
2013-11-03 12:53:49 +02:00

135 lines
5.7 KiB
C#

namespace HelpersLib
{
partial class ClipboardFormatForm
{
/// <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.txtFormat = new System.Windows.Forms.TextBox();
this.txtDescription = new System.Windows.Forms.TextBox();
this.lblFilter = new System.Windows.Forms.Label();
this.lblFolderPath = new System.Windows.Forms.Label();
this.lblExample = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtFormat
//
this.txtFormat.Location = new System.Drawing.Point(88, 36);
this.txtFormat.Name = "txtFormat";
this.txtFormat.Size = new System.Drawing.Size(304, 20);
this.txtFormat.TabIndex = 3;
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(88, 12);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(304, 20);
this.txtDescription.TabIndex = 1;
//
// lblFilter
//
this.lblFilter.AutoSize = true;
this.lblFilter.Location = new System.Drawing.Point(16, 40);
this.lblFilter.Name = "lblFilter";
this.lblFilter.Size = new System.Drawing.Size(42, 13);
this.lblFilter.TabIndex = 2;
this.lblFilter.Text = "Format:";
//
// lblFolderPath
//
this.lblFolderPath.AutoSize = true;
this.lblFolderPath.Location = new System.Drawing.Point(16, 16);
this.lblFolderPath.Name = "lblFolderPath";
this.lblFolderPath.Size = new System.Drawing.Size(63, 13);
this.lblFolderPath.TabIndex = 0;
this.lblFolderPath.Text = "Description:";
//
// lblExample
//
this.lblExample.Location = new System.Drawing.Point(88, 60);
this.lblExample.Name = "lblExample";
this.lblExample.Size = new System.Drawing.Size(302, 52);
this.lblExample.TabIndex = 4;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(316, 120);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(80, 23);
this.btnCancel.TabIndex = 6;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(228, 120);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(80, 23);
this.btnOK.TabIndex = 5;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// ClipboardFormatForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(404, 153);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.lblExample);
this.Controls.Add(this.txtFormat);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.lblFilter);
this.Controls.Add(this.lblFolderPath);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(420, 192);
this.Name = "ClipboardFormatForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Clipboard content format";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtFormat;
private System.Windows.Forms.TextBox txtDescription;
private System.Windows.Forms.Label lblFilter;
private System.Windows.Forms.Label lblFolderPath;
private System.Windows.Forms.Label lblExample;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
}
}