mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 22:40:27 +00:00
133 lines
No EOL
5.2 KiB
C#
133 lines
No EOL
5.2 KiB
C#
namespace FirstPlugin.Forms
|
|
{
|
|
partial class EditBox
|
|
{
|
|
/// <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.nameTB = new System.Windows.Forms.TextBox();
|
|
this.typeCB = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.dataTB = new System.Windows.Forms.TextBox();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// nameTB
|
|
//
|
|
this.nameTB.Enabled = false;
|
|
this.nameTB.Location = new System.Drawing.Point(76, 12);
|
|
this.nameTB.Name = "nameTB";
|
|
this.nameTB.Size = new System.Drawing.Size(220, 20);
|
|
this.nameTB.TabIndex = 0;
|
|
//
|
|
// typeCB
|
|
//
|
|
this.typeCB.FormattingEnabled = true;
|
|
this.typeCB.Location = new System.Drawing.Point(76, 38);
|
|
this.typeCB.Name = "typeCB";
|
|
this.typeCB.Size = new System.Drawing.Size(220, 21);
|
|
this.typeCB.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(38, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Name:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 41);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(34, 13);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Type:";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.button1.Location = new System.Drawing.Point(275, 187);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "Save";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataTB
|
|
//
|
|
this.dataTB.Location = new System.Drawing.Point(12, 74);
|
|
this.dataTB.Multiline = true;
|
|
this.dataTB.Name = "dataTB";
|
|
this.dataTB.Size = new System.Drawing.Size(346, 107);
|
|
this.dataTB.TabIndex = 6;
|
|
this.dataTB.TextChanged += new System.EventHandler(this.dataTB_TextChanged);
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Location = new System.Drawing.Point(302, 12);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(56, 50);
|
|
this.pictureBox1.TabIndex = 7;
|
|
this.pictureBox1.TabStop = false;
|
|
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
|
|
//
|
|
// EditBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(362, 216);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.dataTB);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.typeCB);
|
|
this.Controls.Add(this.nameTB);
|
|
this.Name = "EditBox";
|
|
this.Text = "EditBox";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox nameTB;
|
|
private System.Windows.Forms.ComboBox typeCB;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox dataTB;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
}
|
|
} |