| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- namespace PCLCommunication
- {
- partial class FrmServerTest
- {
- /// <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.txtServerPort = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.btnStop = new System.Windows.Forms.Button();
- this.btnStart = new System.Windows.Forms.Button();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.panel1 = new System.Windows.Forms.Panel();
- this.lbls = new System.Windows.Forms.Label();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // txtServerPort
- //
- this.txtServerPort.Location = new System.Drawing.Point(64, 4);
- this.txtServerPort.Name = "txtServerPort";
- this.txtServerPort.Size = new System.Drawing.Size(100, 21);
- this.txtServerPort.TabIndex = 11;
- this.txtServerPort.Text = "5000";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(4, 6);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 10;
- this.label1.Text = "服务端口";
- //
- // btnStop
- //
- this.btnStop.Location = new System.Drawing.Point(251, 4);
- this.btnStop.Name = "btnStop";
- this.btnStop.Size = new System.Drawing.Size(75, 23);
- this.btnStop.TabIndex = 8;
- this.btnStop.Text = "停止服务";
- this.btnStop.UseVisualStyleBackColor = true;
- this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
- //
- // btnStart
- //
- this.btnStart.Location = new System.Drawing.Point(170, 3);
- this.btnStart.Name = "btnStart";
- this.btnStart.Size = new System.Drawing.Size(75, 23);
- this.btnStart.TabIndex = 9;
- this.btnStart.Text = "启动服务";
- this.btnStart.UseVisualStyleBackColor = true;
- this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
- //
- // textBox1
- //
- this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.textBox1.Location = new System.Drawing.Point(0, 40);
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.textBox1.Size = new System.Drawing.Size(418, 264);
- this.textBox1.TabIndex = 12;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.lbls);
- this.panel1.Controls.Add(this.btnStart);
- this.panel1.Controls.Add(this.btnStop);
- this.panel1.Controls.Add(this.txtServerPort);
- this.panel1.Controls.Add(this.label1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(418, 40);
- this.panel1.TabIndex = 13;
- //
- // lbls
- //
- this.lbls.AutoSize = true;
- this.lbls.Location = new System.Drawing.Point(333, 12);
- this.lbls.Name = "lbls";
- this.lbls.Size = new System.Drawing.Size(29, 12);
- this.lbls.TabIndex = 12;
- this.lbls.Text = "停止";
- //
- // FrmServerTest
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(418, 304);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.panel1);
- this.Name = "FrmServerTest";
- this.Text = "FrmServerTest";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmServerTest_FormClosed);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtServerPort;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnStop;
- private System.Windows.Forms.Button btnStart;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label lbls;
- }
- }
|