?? form1.designer.cs
字號:
?namespace GRRSServer
{
partial class Form1
{
/// <summary>
/// 必需的設計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.listBox1 = new System.Windows.Forms.ListBox();
this.btnOpen = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(5, 151);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(673, 316);
this.listBox1.TabIndex = 0;
//
// btnOpen
//
this.btnOpen.Location = new System.Drawing.Point(605, 70);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(73, 26);
this.btnOpen.TabIndex = 1;
this.btnOpen.Text = "打開服務器";
this.btnOpen.UseVisualStyleBackColor = true;
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(605, 102);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(73, 26);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "關閉服務器";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(5, 33);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(578, 102);
this.textBox1.TabIndex = 3;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(605, 33);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(73, 26);
this.btnSend.TabIndex = 4;
this.btnSend.Text = "發(fā)送信息";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(690, 476);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnOpen);
this.Controls.Add(this.listBox1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button btnOpen;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnSend;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -