ShareX/ShareX/Forms/ClipboardFormatForm.Designer.cs
Michael Delpach b03ebfd34a DPI fixes
2020-07-11 18:54:23 +08:00

114 lines
4.4 KiB
C#

namespace ShareX
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClipboardFormatForm));
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
//
resources.ApplyResources(this.txtFormat, "txtFormat");
this.txtFormat.Name = "txtFormat";
//
// txtDescription
//
resources.ApplyResources(this.txtDescription, "txtDescription");
this.txtDescription.Name = "txtDescription";
//
// lblFilter
//
resources.ApplyResources(this.lblFilter, "lblFilter");
this.lblFilter.Name = "lblFilter";
//
// lblFolderPath
//
resources.ApplyResources(this.lblFolderPath, "lblFolderPath");
this.lblFolderPath.Name = "lblFolderPath";
//
// lblExample
//
resources.ApplyResources(this.lblExample, "lblExample");
this.lblExample.Name = "lblExample";
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// ClipboardFormatForm
//
this.AcceptButton = this.btnOK;
resources.ApplyResources(this, "$this");
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.SystemColors.Window;
this.CancelButton = this.btnCancel;
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.Name = "ClipboardFormatForm";
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;
}
}