📄 form1.designer.cs
字号:
this.randomKey.Size = new System.Drawing.Size(99, 23);
this.randomKey.TabIndex = 9;
this.randomKey.Text = "随机128位密钥";
this.randomKey.UseVisualStyleBackColor = true;
this.randomKey.Click += new System.EventHandler(this.randomKey_Click);
//
// keyInput
//
this.keyInput.Location = new System.Drawing.Point(6, 42);
this.keyInput.Multiline = true;
this.keyInput.Name = "keyInput";
this.keyInput.Size = new System.Drawing.Size(569, 65);
this.keyInput.TabIndex = 4;
//
// radioButton3
//
this.radioButton3.AutoSize = true;
this.radioButton3.Location = new System.Drawing.Point(126, 20);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(53, 16);
this.radioButton3.TabIndex = 8;
this.radioButton3.Text = "256位";
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.KeySizeSelected);
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(67, 20);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(53, 16);
this.radioButton2.TabIndex = 7;
this.radioButton2.Text = "192位";
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.KeySizeSelected);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(8, 20);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(53, 16);
this.radioButton1.TabIndex = 6;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "128位";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.KeySizeSelected);
//
// tabPage2
//
this.tabPage2.BackColor = System.Drawing.Color.Transparent;
this.tabPage2.Controls.Add(this.button1);
this.tabPage2.Controls.Add(this.Exit);
this.tabPage2.Controls.Add(this.groupBox2);
this.tabPage2.Controls.Add(this.groupBox1);
this.tabPage2.ForeColor = System.Drawing.Color.Black;
this.tabPage2.Location = new System.Drawing.Point(4, 21);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(609, 455);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "实验二 MD5";
//
// button1
//
this.button1.Location = new System.Drawing.Point(441, 401);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 10;
this.button1.Text = "说明";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Exit
//
this.Exit.Location = new System.Drawing.Point(522, 401);
this.Exit.Name = "Exit";
this.Exit.Size = new System.Drawing.Size(75, 23);
this.Exit.TabIndex = 9;
this.Exit.Text = "退出";
this.Exit.UseVisualStyleBackColor = true;
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.HashCode);
this.groupBox2.Controls.Add(this.HashCodeOutput);
this.groupBox2.Location = new System.Drawing.Point(6, 208);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(597, 146);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "输出";
//
// HashCode
//
this.HashCode.Location = new System.Drawing.Point(8, 20);
this.HashCode.Name = "HashCode";
this.HashCode.Size = new System.Drawing.Size(75, 23);
this.HashCode.TabIndex = 2;
this.HashCode.Text = "生成Hash码";
this.HashCode.UseVisualStyleBackColor = true;
this.HashCode.Click += new System.EventHandler(this.HashCode_Click);
//
// HashCodeOutput
//
this.HashCodeOutput.Location = new System.Drawing.Point(8, 49);
this.HashCodeOutput.Multiline = true;
this.HashCodeOutput.Name = "HashCodeOutput";
this.HashCodeOutput.ReadOnly = true;
this.HashCodeOutput.Size = new System.Drawing.Size(583, 91);
this.HashCodeOutput.TabIndex = 1;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.messageInput);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.randomInput);
this.groupBox1.Controls.Add(this.openMessage);
this.groupBox1.Controls.Add(this.clearAll);
this.groupBox1.Location = new System.Drawing.Point(6, 51);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(597, 151);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "输入(3种方式)";
//
// messageInput
//
this.messageInput.Location = new System.Drawing.Point(6, 49);
this.messageInput.Name = "messageInput";
this.messageInput.Size = new System.Drawing.Size(583, 91);
this.messageInput.TabIndex = 7;
this.messageInput.Text = "";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 6;
this.label1.Text = "自主输入";
//
// randomInput
//
this.randomInput.Location = new System.Drawing.Point(187, 20);
this.randomInput.Name = "randomInput";
this.randomInput.Size = new System.Drawing.Size(75, 23);
this.randomInput.TabIndex = 3;
this.randomInput.Text = "随机输入";
this.randomInput.UseVisualStyleBackColor = true;
this.randomInput.Click += new System.EventHandler(this.randomInput_Click);
//
// openMessage
//
this.openMessage.Location = new System.Drawing.Point(79, 20);
this.openMessage.Name = "openMessage";
this.openMessage.Size = new System.Drawing.Size(75, 23);
this.openMessage.TabIndex = 4;
this.openMessage.Text = "打开消息";
this.openMessage.UseVisualStyleBackColor = true;
this.openMessage.Click += new System.EventHandler(this.openMessage_Click);
//
// clearAll
//
this.clearAll.Location = new System.Drawing.Point(516, 20);
this.clearAll.Name = "clearAll";
this.clearAll.Size = new System.Drawing.Size(75, 23);
this.clearAll.TabIndex = 5;
this.clearAll.Text = "清空";
this.clearAll.UseVisualStyleBackColor = true;
this.clearAll.Click += new System.EventHandler(this.clearAll_Click);
//
// openFileDialog1
//
this.openFileDialog1.Filter = "(*.txt)|*.txt|all file|*.*";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(641, 502);
this.Controls.Add(this.tabControl1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(649, 529);
this.MinimumSize = new System.Drawing.Size(649, 529);
this.Name = "Form1";
this.Text = "AES+MD5 040803";
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.Button randomInput;
private System.Windows.Forms.Button HashCode;
private System.Windows.Forms.TextBox HashCodeOutput;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button openMessage;
private System.Windows.Forms.Button clearAll;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button randomPlaintext;
private System.Windows.Forms.TextBox plaintextInput;
private System.Windows.Forms.TextBox keyInput;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.RadioButton radioButton3;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.TextBox plaintextOutput;
private System.Windows.Forms.TextBox ciphertextOutput;
private System.Windows.Forms.Button Clear;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button randomKey;
private System.Windows.Forms.Button Exit;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.RichTextBox messageInput;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -