146 lines
5.8 KiB
C#
146 lines
5.8 KiB
C#
namespace FLSystem.Forms
|
|
{
|
|
partial class TCPForm
|
|
{
|
|
/// <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.label2 = new System.Windows.Forms.Label();
|
|
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
|
|
this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(55, 41);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(43, 14);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "端口:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(55, 89);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(43, 14);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "秘钥:";
|
|
//
|
|
// numericUpDown1
|
|
//
|
|
this.numericUpDown1.Location = new System.Drawing.Point(117, 39);
|
|
this.numericUpDown1.Maximum = new decimal(new int[] {
|
|
999999999,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDown1.Name = "numericUpDown1";
|
|
this.numericUpDown1.Size = new System.Drawing.Size(68, 22);
|
|
this.numericUpDown1.TabIndex = 2;
|
|
this.numericUpDown1.Value = new decimal(new int[] {
|
|
80,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(117, 84);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.ReadOnly = true;
|
|
this.textBox1.Size = new System.Drawing.Size(258, 22);
|
|
this.textBox1.TabIndex = 3;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.ForeColor = System.Drawing.Color.Gray;
|
|
this.label3.Location = new System.Drawing.Point(210, 41);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(149, 14);
|
|
this.label3.TabIndex = 4;
|
|
this.label3.Text = "(请确认防火墙已放行端口)";
|
|
//
|
|
// linkLabel2
|
|
//
|
|
this.linkLabel2.AutoSize = true;
|
|
this.linkLabel2.Location = new System.Drawing.Point(390, 87);
|
|
this.linkLabel2.Name = "linkLabel2";
|
|
this.linkLabel2.Size = new System.Drawing.Size(31, 14);
|
|
this.linkLabel2.TabIndex = 6;
|
|
this.linkLabel2.TabStop = true;
|
|
this.linkLabel2.Text = "随机";
|
|
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
|
|
//
|
|
// simpleButton1
|
|
//
|
|
this.simpleButton1.Location = new System.Drawing.Point(172, 128);
|
|
this.simpleButton1.Name = "simpleButton1";
|
|
this.simpleButton1.Size = new System.Drawing.Size(147, 23);
|
|
this.simpleButton1.TabIndex = 7;
|
|
this.simpleButton1.Text = "启动Socket服务器";
|
|
this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
|
|
//
|
|
// TCPForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(475, 185);
|
|
this.Controls.Add(this.simpleButton1);
|
|
this.Controls.Add(this.linkLabel2);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.numericUpDown1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "TCPForm";
|
|
this.Text = "Socket 服务器";
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.NumericUpDown numericUpDown1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.LinkLabel linkLabel2;
|
|
private DevExpress.XtraEditors.SimpleButton simpleButton1;
|
|
}
|
|
} |