📄 mainform.designer.cs
字号:
namespace PlayCardClient
{
partial class MainForm
{
/// <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.msgViewBox = new System.Windows.Forms.ListBox();
this.btnSend = new System.Windows.Forms.Button();
this.txtMessage = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// msgViewBox
//
this.msgViewBox.FormattingEnabled = true;
this.msgViewBox.ItemHeight = 12;
this.msgViewBox.Location = new System.Drawing.Point(12, 12);
this.msgViewBox.Name = "msgViewBox";
this.msgViewBox.Size = new System.Drawing.Size(345, 220);
this.msgViewBox.TabIndex = 0;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(282, 250);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 1;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtMessage
//
this.txtMessage.Location = new System.Drawing.Point(12, 250);
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(264, 21);
this.txtMessage.TabIndex = 2;
//
// MainForm
//
this.AcceptButton = this.btnSend;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(363, 279);
this.Controls.Add(this.txtMessage);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.msgViewBox);
this.Name = "MainForm";
this.Text = "MainForm";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox msgViewBox;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.TextBox txtMessage;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -