ShareX/ShareX.ScreenCaptureLib/Forms/StickerPackForm.Designer.cs

124 lines
5.1 KiB
C#

namespace ShareX.ScreenCaptureLib
{
partial class StickerPackForm
{
/// <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(StickerPackForm));
this.lblFolder = new System.Windows.Forms.Label();
this.txtFolder = new System.Windows.Forms.TextBox();
this.lblName = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.cbStickers = new System.Windows.Forms.ComboBox();
this.btnAdd = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.btnFolderBrowse = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblFolder
//
resources.ApplyResources(this.lblFolder, "lblFolder");
this.lblFolder.Name = "lblFolder";
//
// txtFolder
//
resources.ApplyResources(this.txtFolder, "txtFolder");
this.txtFolder.Name = "txtFolder";
this.txtFolder.TextChanged += new System.EventHandler(this.txtFolder_TextChanged);
//
// lblName
//
resources.ApplyResources(this.lblName, "lblName");
this.lblName.Name = "lblName";
//
// txtName
//
resources.ApplyResources(this.txtName, "txtName");
this.txtName.Name = "txtName";
this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// cbStickers
//
this.cbStickers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbStickers.FormattingEnabled = true;
resources.ApplyResources(this.cbStickers, "cbStickers");
this.cbStickers.Name = "cbStickers";
this.cbStickers.SelectedIndexChanged += new System.EventHandler(this.cbStickers_SelectedIndexChanged);
//
// btnAdd
//
resources.ApplyResources(this.btnAdd, "btnAdd");
this.btnAdd.Name = "btnAdd";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnRemove
//
resources.ApplyResources(this.btnRemove, "btnRemove");
this.btnRemove.Name = "btnRemove";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
//
// btnFolderBrowse
//
resources.ApplyResources(this.btnFolderBrowse, "btnFolderBrowse");
this.btnFolderBrowse.Name = "btnFolderBrowse";
this.btnFolderBrowse.UseVisualStyleBackColor = true;
this.btnFolderBrowse.Click += new System.EventHandler(this.btnFolderBrowse_Click);
//
// StickerPackForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnFolderBrowse);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.cbStickers);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lblName);
this.Controls.Add(this.txtFolder);
this.Controls.Add(this.lblFolder);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "StickerPackForm";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblFolder;
private System.Windows.Forms.TextBox txtFolder;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.ComboBox cbStickers;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnRemove;
private System.Windows.Forms.Button btnFolderBrowse;
}
}