📄 form1.designer.cs
字号:
namespace RSA
{
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.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnDeCrypt = new System.Windows.Forms.Button();
this.btnCipherClear = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.tCipher = new System.Windows.Forms.TextBox();
this.btnCrypt = new System.Windows.Forms.Button();
this.btnGetKey = new System.Windows.Forms.Button();
this.btnMessageClear = new System.Windows.Forms.Button();
this.btnInsert = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tMessage = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btnResultClear = new System.Windows.Forms.Button();
this.tResult = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnDeCrypt);
this.groupBox1.Controls.Add(this.btnCipherClear);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.tCipher);
this.groupBox1.Controls.Add(this.btnCrypt);
this.groupBox1.Controls.Add(this.btnGetKey);
this.groupBox1.Controls.Add(this.btnMessageClear);
this.groupBox1.Controls.Add(this.btnInsert);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.tMessage);
this.groupBox1.Location = new System.Drawing.Point(20, 24);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(256, 338);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "加解密工作区";
//
// btnDeCrypt
//
this.btnDeCrypt.Location = new System.Drawing.Point(147, 308);
this.btnDeCrypt.Name = "btnDeCrypt";
this.btnDeCrypt.Size = new System.Drawing.Size(62, 24);
this.btnDeCrypt.TabIndex = 6;
this.btnDeCrypt.Text = "解密";
this.btnDeCrypt.UseVisualStyleBackColor = true;
this.btnDeCrypt.Click += new System.EventHandler(this.btnDeCrypt_Click);
//
// btnCipherClear
//
this.btnCipherClear.Location = new System.Drawing.Point(51, 308);
this.btnCipherClear.Name = "btnCipherClear";
this.btnCipherClear.Size = new System.Drawing.Size(62, 24);
this.btnCipherClear.TabIndex = 6;
this.btnCipherClear.Text = "清除";
this.btnCipherClear.UseVisualStyleBackColor = true;
this.btnCipherClear.Click += new System.EventHandler(this.btnCipherClear_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(23, 199);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 12);
this.label2.TabIndex = 5;
this.label2.Text = "密文";
//
// tCipher
//
this.tCipher.Location = new System.Drawing.Point(24, 217);
this.tCipher.Multiline = true;
this.tCipher.Name = "tCipher";
this.tCipher.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tCipher.Size = new System.Drawing.Size(213, 79);
this.tCipher.TabIndex = 4;
//
// btnCrypt
//
this.btnCrypt.Location = new System.Drawing.Point(25, 167);
this.btnCrypt.Name = "btnCrypt";
this.btnCrypt.Size = new System.Drawing.Size(213, 23);
this.btnCrypt.TabIndex = 3;
this.btnCrypt.Text = "RC4加密";
this.btnCrypt.UseVisualStyleBackColor = true;
this.btnCrypt.Click += new System.EventHandler(this.btnCrypt_Click);
//
// btnGetKey
//
this.btnGetKey.Location = new System.Drawing.Point(178, 131);
this.btnGetKey.Name = "btnGetKey";
this.btnGetKey.Size = new System.Drawing.Size(61, 23);
this.btnGetKey.TabIndex = 2;
this.btnGetKey.Text = "清除";
this.btnGetKey.UseVisualStyleBackColor = true;
this.btnGetKey.Click += new System.EventHandler(this.btnGetKey_Click);
//
// btnMessageClear
//
this.btnMessageClear.Location = new System.Drawing.Point(102, 131);
this.btnMessageClear.Name = "btnMessageClear";
this.btnMessageClear.Size = new System.Drawing.Size(61, 23);
this.btnMessageClear.TabIndex = 2;
this.btnMessageClear.Text = "更新密钥";
this.btnMessageClear.UseVisualStyleBackColor = true;
this.btnMessageClear.Click += new System.EventHandler(this.btnMessageClear_Click);
//
// btnInsert
//
this.btnInsert.Location = new System.Drawing.Point(24, 131);
this.btnInsert.Name = "btnInsert";
this.btnInsert.Size = new System.Drawing.Size(61, 23);
this.btnInsert.TabIndex = 2;
this.btnInsert.Text = "导入";
this.btnInsert.UseVisualStyleBackColor = true;
this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(113, 12);
this.label1.TabIndex = 1;
this.label1.Text = "输入需要加密的消息";
//
// tMessage
//
this.tMessage.Location = new System.Drawing.Point(24, 32);
this.tMessage.Multiline = true;
this.tMessage.Name = "tMessage";
this.tMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tMessage.Size = new System.Drawing.Size(215, 93);
this.tMessage.TabIndex = 0;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btnResultClear);
this.groupBox2.Controls.Add(this.tResult);
this.groupBox2.Location = new System.Drawing.Point(305, 24);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(228, 337);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "解密结果显示";
//
// btnResultClear
//
this.btnResultClear.Location = new System.Drawing.Point(83, 296);
this.btnResultClear.Name = "btnResultClear";
this.btnResultClear.Size = new System.Drawing.Size(69, 25);
this.btnResultClear.TabIndex = 1;
this.btnResultClear.Text = "清除";
this.btnResultClear.UseVisualStyleBackColor = true;
//
// tResult
//
this.tResult.Location = new System.Drawing.Point(27, 33);
this.tResult.Multiline = true;
this.tResult.Name = "tResult";
this.tResult.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tResult.Size = new System.Drawing.Size(178, 247);
this.tResult.TabIndex = 0;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(577, 388);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "Form1";
this.Text = "RC4加解密演示";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnGetKey;
private System.Windows.Forms.Button btnMessageClear;
private System.Windows.Forms.Button btnInsert;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tMessage;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tCipher;
private System.Windows.Forms.Button btnCrypt;
private System.Windows.Forms.Button btnDeCrypt;
private System.Windows.Forms.Button btnCipherClear;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnResultClear;
private System.Windows.Forms.TextBox tResult;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -