Minecraft-Console-Client/MinecraftClientGUI/Form1.Designer.cs
ORelio f26ff323fd Added Minecraft Client GUI v1.0 to the repository
+ Some BasicIO fixes to Minecraft Console Client
2013-08-21 14:31:57 +02:00

173 lines
7.8 KiB
C#

namespace MinecraftClientGUI
{
partial class Form1
{
/// <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(Form1));
this.groupBox_Login = new System.Windows.Forms.GroupBox();
this.btn_connect = new System.Windows.Forms.Button();
this.box_ip = new System.Windows.Forms.TextBox();
this.box_password = new System.Windows.Forms.TextBox();
this.box_Login = new System.Windows.Forms.TextBox();
this.box_output = new System.Windows.Forms.RichTextBox();
this.box_input = new System.Windows.Forms.TextBox();
this.btn_send = new System.Windows.Forms.Button();
this.btn_about = new System.Windows.Forms.Button();
this.groupBox_Login.SuspendLayout();
this.SuspendLayout();
//
// groupBox_Login
//
this.groupBox_Login.BackColor = System.Drawing.Color.Transparent;
this.groupBox_Login.Controls.Add(this.btn_connect);
this.groupBox_Login.Controls.Add(this.box_ip);
this.groupBox_Login.Controls.Add(this.box_password);
this.groupBox_Login.Controls.Add(this.box_Login);
this.groupBox_Login.Location = new System.Drawing.Point(13, 11);
this.groupBox_Login.Name = "groupBox_Login";
this.groupBox_Login.Size = new System.Drawing.Size(564, 46);
this.groupBox_Login.TabIndex = 0;
this.groupBox_Login.TabStop = false;
this.groupBox_Login.Text = " ";
//
// btn_connect
//
this.btn_connect.Location = new System.Drawing.Point(513, 15);
this.btn_connect.Name = "btn_connect";
this.btn_connect.Size = new System.Drawing.Size(40, 23);
this.btn_connect.TabIndex = 6;
this.btn_connect.Text = "Go!";
this.btn_connect.UseVisualStyleBackColor = true;
this.btn_connect.Click += new System.EventHandler(this.btn_connect_Click);
//
// box_ip
//
this.box_ip.Location = new System.Drawing.Point(400, 17);
this.box_ip.Name = "box_ip";
this.box_ip.Size = new System.Drawing.Size(100, 20);
this.box_ip.TabIndex = 5;
this.box_ip.KeyUp += new System.Windows.Forms.KeyEventHandler(this.loginBox_KeyUp);
//
// box_password
//
this.box_password.Location = new System.Drawing.Point(235, 17);
this.box_password.Name = "box_password";
this.box_password.PasswordChar = '•';
this.box_password.Size = new System.Drawing.Size(100, 20);
this.box_password.TabIndex = 3;
this.box_password.KeyUp += new System.Windows.Forms.KeyEventHandler(this.loginBox_KeyUp);
//
// box_Login
//
this.box_Login.Location = new System.Drawing.Point(67, 17);
this.box_Login.Name = "box_Login";
this.box_Login.Size = new System.Drawing.Size(100, 20);
this.box_Login.TabIndex = 1;
this.box_Login.KeyUp += new System.Windows.Forms.KeyEventHandler(this.loginBox_KeyUp);
//
// box_output
//
this.box_output.Location = new System.Drawing.Point(13, 66);
this.box_output.Name = "box_output";
this.box_output.ReadOnly = true;
this.box_output.Size = new System.Drawing.Size(564, 292);
this.box_output.TabIndex = 1;
this.box_output.Text = "";
this.box_output.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.LinkClicked);
//
// box_input
//
this.box_input.AcceptsTab = true;
this.box_input.Location = new System.Drawing.Point(13, 365);
this.box_input.MaxLength = 100;
this.box_input.Multiline = true;
this.box_input.Name = "box_input";
this.box_input.Size = new System.Drawing.Size(490, 20);
this.box_input.TabIndex = 2;
this.box_input.KeyDown += new System.Windows.Forms.KeyEventHandler(this.inputBox_KeyDown);
//
// btn_send
//
this.btn_send.Location = new System.Drawing.Point(509, 364);
this.btn_send.Name = "btn_send";
this.btn_send.Size = new System.Drawing.Size(40, 22);
this.btn_send.TabIndex = 3;
this.btn_send.Text = "Send";
this.btn_send.UseVisualStyleBackColor = true;
this.btn_send.Click += new System.EventHandler(this.btn_send_Click);
//
// btn_about
//
this.btn_about.Location = new System.Drawing.Point(555, 364);
this.btn_about.Name = "btn_about";
this.btn_about.Size = new System.Drawing.Size(22, 22);
this.btn_about.TabIndex = 4;
this.btn_about.Text = "?";
this.btn_about.UseVisualStyleBackColor = true;
this.btn_about.Click += new System.EventHandler(this.btn_about_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(589, 398);
this.Controls.Add(this.btn_about);
this.Controls.Add(this.btn_send);
this.Controls.Add(this.box_input);
this.Controls.Add(this.box_output);
this.Controls.Add(this.groupBox_Login);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Minecraft Console Client GUI";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.onClose);
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox_Login.ResumeLayout(false);
this.groupBox_Login.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox_Login;
private System.Windows.Forms.Button btn_connect;
private System.Windows.Forms.TextBox box_ip;
private System.Windows.Forms.TextBox box_password;
private System.Windows.Forms.TextBox box_Login;
private System.Windows.Forms.RichTextBox box_output;
private System.Windows.Forms.TextBox box_input;
private System.Windows.Forms.Button btn_send;
private System.Windows.Forms.Button btn_about;
}
}