ShareX/ShareX.HelpersLib/Automate/AutomateForm.Designer.cs

128 lines
5.7 KiB
C#

namespace ShareX.HelpersLib
{
partial class AutomateForm
{
/// <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(AutomateForm));
this.btnRun = new System.Windows.Forms.Button();
this.rtbInput = new System.Windows.Forms.RichTextBox();
this.pInput = new System.Windows.Forms.Panel();
this.cbFunctions = new System.Windows.Forms.ComboBox();
this.lblFunctions = new System.Windows.Forms.Label();
this.pInput.SuspendLayout();
this.SuspendLayout();
//
// btnRun
//
this.btnRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnRun.Location = new System.Drawing.Point(8, 484);
this.btnRun.Name = "btnRun";
this.btnRun.Size = new System.Drawing.Size(120, 24);
this.btnRun.TabIndex = 1;
this.btnRun.Text = "Run";
this.btnRun.UseVisualStyleBackColor = true;
this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
//
// rtbInput
//
this.rtbInput.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbInput.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtbInput.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.rtbInput.Location = new System.Drawing.Point(3, 3);
this.rtbInput.Name = "rtbInput";
this.rtbInput.Size = new System.Drawing.Size(495, 460);
this.rtbInput.TabIndex = 2;
this.rtbInput.Text = resources.GetString("rtbInput.Text");
this.rtbInput.TextChanged += new System.EventHandler(this.rtbInput_TextChanged);
//
// pInput
//
this.pInput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pInput.BackColor = System.Drawing.Color.White;
this.pInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pInput.Controls.Add(this.rtbInput);
this.pInput.Location = new System.Drawing.Point(8, 8);
this.pInput.Name = "pInput";
this.pInput.Padding = new System.Windows.Forms.Padding(3);
this.pInput.Size = new System.Drawing.Size(503, 468);
this.pInput.TabIndex = 3;
//
// cbFunctions
//
this.cbFunctions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cbFunctions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFunctions.FormattingEnabled = true;
this.cbFunctions.Location = new System.Drawing.Point(343, 484);
this.cbFunctions.Name = "cbFunctions";
this.cbFunctions.Size = new System.Drawing.Size(168, 21);
this.cbFunctions.TabIndex = 4;
//
// lblFunctions
//
this.lblFunctions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.lblFunctions.AutoSize = true;
this.lblFunctions.Location = new System.Drawing.Point(279, 488);
this.lblFunctions.Name = "lblFunctions";
this.lblFunctions.Size = new System.Drawing.Size(56, 13);
this.lblFunctions.TabIndex = 5;
this.lblFunctions.Text = "Functions:";
//
// AutomateForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(520, 516);
this.Controls.Add(this.lblFunctions);
this.Controls.Add(this.cbFunctions);
this.Controls.Add(this.pInput);
this.Controls.Add(this.btnRun);
this.Name = "AutomateForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Automate";
this.pInput.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnRun;
private System.Windows.Forms.RichTextBox rtbInput;
private System.Windows.Forms.Panel pInput;
private System.Windows.Forms.ComboBox cbFunctions;
private System.Windows.Forms.Label lblFunctions;
}
}