📄 form1.designer.cs
字号:
namespace CSSP
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.mnuClose = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.mnuSettings = new System.Windows.Forms.MenuItem();
this.mnuConnect = new System.Windows.Forms.MenuItem();
this.mnuDisconnect = new System.Windows.Forms.MenuItem();
this.txtMess = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.txtLog = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.lblStatus = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.mnuClose);
this.mainMenu1.MenuItems.Add(this.menuItem2);
//
// mnuClose
//
this.mnuClose.Text = "Close";
this.mnuClose.Click += new System.EventHandler(this.mnuClose_Click);
//
// menuItem2
//
this.menuItem2.MenuItems.Add(this.mnuSettings);
this.menuItem2.MenuItems.Add(this.mnuConnect);
this.menuItem2.MenuItems.Add(this.mnuDisconnect);
this.menuItem2.Text = "Menu";
//
// mnuSettings
//
this.mnuSettings.Text = "Settings";
this.mnuSettings.Click += new System.EventHandler(this.mnuSettings_Click);
//
// mnuConnect
//
this.mnuConnect.Enabled = false;
this.mnuConnect.Text = "Connect";
this.mnuConnect.Click += new System.EventHandler(this.mnuConnect_Click);
//
// mnuDisconnect
//
this.mnuDisconnect.Enabled = false;
this.mnuDisconnect.Text = "Disconnect";
this.mnuDisconnect.Click += new System.EventHandler(this.mnuDisconnect_Click);
//
// txtMess
//
this.txtMess.Location = new System.Drawing.Point(3, 3);
this.txtMess.Multiline = true;
this.txtMess.Name = "txtMess";
this.txtMess.Size = new System.Drawing.Size(159, 38);
this.txtMess.TabIndex = 1;
//
// btnSend
//
this.btnSend.Enabled = false;
this.btnSend.Location = new System.Drawing.Point(168, 3);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(72, 38);
this.btnSend.TabIndex = 2;
this.btnSend.Text = "Send";
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtLog
//
this.txtLog.Enabled = false;
this.txtLog.Location = new System.Drawing.Point(3, 47);
this.txtLog.Multiline = true;
this.txtLog.Name = "txtLog";
this.txtLog.ReadOnly = true;
this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLog.Size = new System.Drawing.Size(234, 120);
this.txtLog.TabIndex = 3;
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 170);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(45, 20);
this.label1.Text = "Status:";
//
// lblStatus
//
this.lblStatus.Location = new System.Drawing.Point(3, 190);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(234, 68);
this.lblStatus.Text = "status label";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.label1);
this.Controls.Add(this.txtLog);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.txtMess);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "Form1";
this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtMess;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.TextBox txtLog;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.MenuItem mnuClose;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem mnuSettings;
private System.Windows.Forms.MenuItem mnuConnect;
private System.Windows.Forms.MenuItem mnuDisconnect;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -