114 lines
4.7 KiB
C#
114 lines
4.7 KiB
C#
|
|
namespace Nanji_Island
|
|||
|
|
{
|
|||
|
|
partial class Form2
|
|||
|
|
{
|
|||
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|||
|
|
this.ipaddress = new System.Windows.Forms.TextBox();
|
|||
|
|
this._port = new System.Windows.Forms.TextBox();
|
|||
|
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// label1
|
|||
|
|
//
|
|||
|
|
this.label1.AutoSize = true;
|
|||
|
|
this.label1.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this.label1.Location = new System.Drawing.Point(38, 19);
|
|||
|
|
this.label1.Name = "label1";
|
|||
|
|
this.label1.Size = new System.Drawing.Size(106, 21);
|
|||
|
|
this.label1.TabIndex = 0;
|
|||
|
|
this.label1.Text = "服务端IP:";
|
|||
|
|
//
|
|||
|
|
// ipaddress
|
|||
|
|
//
|
|||
|
|
this.ipaddress.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this.ipaddress.Location = new System.Drawing.Point(150, 20);
|
|||
|
|
this.ipaddress.Multiline = true;
|
|||
|
|
this.ipaddress.Name = "ipaddress";
|
|||
|
|
this.ipaddress.Size = new System.Drawing.Size(109, 21);
|
|||
|
|
this.ipaddress.TabIndex = 1;
|
|||
|
|
//
|
|||
|
|
// _port
|
|||
|
|
//
|
|||
|
|
this._port.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this._port.Location = new System.Drawing.Point(150, 70);
|
|||
|
|
this._port.Multiline = true;
|
|||
|
|
this._port.Name = "_port";
|
|||
|
|
this._port.Size = new System.Drawing.Size(109, 21);
|
|||
|
|
this._port.TabIndex = 2;
|
|||
|
|
//
|
|||
|
|
// label2
|
|||
|
|
//
|
|||
|
|
this.label2.AutoSize = true;
|
|||
|
|
this.label2.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this.label2.Location = new System.Drawing.Point(38, 69);
|
|||
|
|
this.label2.Name = "label2";
|
|||
|
|
this.label2.Size = new System.Drawing.Size(107, 21);
|
|||
|
|
this.label2.TabIndex = 3;
|
|||
|
|
this.label2.Text = "端 口:";
|
|||
|
|
//
|
|||
|
|
// button1
|
|||
|
|
//
|
|||
|
|
this.button1.Location = new System.Drawing.Point(102, 117);
|
|||
|
|
this.button1.Name = "button1";
|
|||
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|||
|
|
this.button1.TabIndex = 4;
|
|||
|
|
this.button1.Text = "启动";
|
|||
|
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
|
//
|
|||
|
|
// Form2
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.BackColor = System.Drawing.Color.White;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(284, 161);
|
|||
|
|
this.Controls.Add(this.button1);
|
|||
|
|
this.Controls.Add(this.label2);
|
|||
|
|
this.Controls.Add(this._port);
|
|||
|
|
this.Controls.Add(this.ipaddress);
|
|||
|
|
this.Controls.Add(this.label1);
|
|||
|
|
this.Name = "Form2";
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "服务端";
|
|||
|
|
this.Load += new System.EventHandler(this.Form2_Load);
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Label label1;
|
|||
|
|
private System.Windows.Forms.TextBox ipaddress;
|
|||
|
|
private System.Windows.Forms.TextBox _port;
|
|||
|
|
private System.Windows.Forms.Label label2;
|
|||
|
|
private System.Windows.Forms.Button button1;
|
|||
|
|
}
|
|||
|
|
}
|