📄 smsinputform.designer.cs
字号:
namespace EncrySMS
{
partial class SMSInputForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.edtContent = new System.Windows.Forms.TextBox();
this.InputMenu = new System.Windows.Forms.ContextMenu();
this.copy = new System.Windows.Forms.MenuItem();
this.paste = new System.Windows.Forms.MenuItem();
this.lblLength = new System.Windows.Forms.Label();
this.context = new System.Windows.Forms.Label();
this.btnGeneral = new System.Windows.Forms.Button();
this.btnEncrypt = new System.Windows.Forms.Button();
this.lblMobile = new System.Windows.Forms.Label();
this.edtMobile = new System.Windows.Forms.TextBox();
this.timerCheckClipboard = new System.Windows.Forms.Timer();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
//
// menuItem1
//
this.menuItem1.Text = "退出";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click_1);
//
// edtContent
//
this.edtContent.ContextMenu = this.InputMenu;
this.edtContent.Location = new System.Drawing.Point(18, 63);
this.edtContent.MaxLength = 70;
this.edtContent.Multiline = true;
this.edtContent.Name = "edtContent";
this.edtContent.Size = new System.Drawing.Size(202, 149);
this.edtContent.TabIndex = 1;
this.edtContent.TextChanged += new System.EventHandler(this.edtContent_TextChanged);
//
// InputMenu
//
this.InputMenu.MenuItems.Add(this.copy);
this.InputMenu.MenuItems.Add(this.paste);
//
// copy
//
this.copy.Text = "复制";
this.copy.Click += new System.EventHandler(this.copy_Click);
//
// paste
//
this.paste.Text = "粘贴";
this.paste.Click += new System.EventHandler(this.paste_Click);
//
// lblLength
//
this.lblLength.BackColor = System.Drawing.Color.LightSkyBlue;
this.lblLength.Location = new System.Drawing.Point(174, 44);
this.lblLength.Name = "lblLength";
this.lblLength.Size = new System.Drawing.Size(43, 16);
this.lblLength.Text = "0";
//
// context
//
this.context.Location = new System.Drawing.Point(18, 44);
this.context.Name = "context";
this.context.Size = new System.Drawing.Size(150, 16);
this.context.Text = "短信内容 内容长度";
//
// btnGeneral
//
this.btnGeneral.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
this.btnGeneral.Location = new System.Drawing.Point(18, 228);
this.btnGeneral.Name = "btnGeneral";
this.btnGeneral.Size = new System.Drawing.Size(72, 20);
this.btnGeneral.TabIndex = 2;
this.btnGeneral.Text = "普通发送";
this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click);
//
// btnEncrypt
//
this.btnEncrypt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(224)))), ((int)(((byte)(255)))));
this.btnEncrypt.Location = new System.Drawing.Point(148, 228);
this.btnEncrypt.Name = "btnEncrypt";
this.btnEncrypt.Size = new System.Drawing.Size(72, 20);
this.btnEncrypt.TabIndex = 3;
this.btnEncrypt.Text = "加密发送";
this.btnEncrypt.Click += new System.EventHandler(this.btnEncrypt_Click);
//
// lblMobile
//
this.lblMobile.Location = new System.Drawing.Point(18, 15);
this.lblMobile.Name = "lblMobile";
this.lblMobile.Size = new System.Drawing.Size(62, 16);
this.lblMobile.Text = "手机号码";
//
// edtMobile
//
this.edtMobile.Location = new System.Drawing.Point(86, 12);
this.edtMobile.Name = "edtMobile";
this.edtMobile.Size = new System.Drawing.Size(134, 21);
this.edtMobile.TabIndex = 0;
this.edtMobile.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.edtMobile_KeyPress);
//
// timerCheckClipboard
//
this.timerCheckClipboard.Interval = 1000;
this.timerCheckClipboard.Tick += new System.EventHandler(this.timerCheckClipboard_Tick);
//
// SMSInputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.BackColor = System.Drawing.Color.LightSkyBlue;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.edtMobile);
this.Controls.Add(this.lblMobile);
this.Controls.Add(this.btnEncrypt);
this.Controls.Add(this.btnGeneral);
this.Controls.Add(this.context);
this.Controls.Add(this.lblLength);
this.Controls.Add(this.edtContent);
this.Menu = this.mainMenu1;
this.Name = "SMSInputForm";
this.Text = "加密短信";
this.Deactivate += new System.EventHandler(this.SMSInputForm_Deactivate);
this.Activated += new System.EventHandler(this.SMSInputForm_Activated);
this.Closing += new System.ComponentModel.CancelEventHandler(this.SMSInputForm_Closing);
this.Load += new System.EventHandler(this.SMSInputForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox edtContent;
private System.Windows.Forms.Label lblLength;
private System.Windows.Forms.ContextMenu InputMenu;
private System.Windows.Forms.MenuItem copy;
private System.Windows.Forms.MenuItem paste;
private System.Windows.Forms.Label context;
private System.Windows.Forms.Button btnGeneral;
private System.Windows.Forms.Button btnEncrypt;
private System.Windows.Forms.Label lblMobile;
private System.Windows.Forms.TextBox edtMobile;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.Timer timerCheckClipboard;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -