📄 form1.designer.cs
字号:
namespace Cryptography
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.plaintextOutput = new System.Windows.Forms.TextBox();
this.ciphertextOutput = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.Clear = new System.Windows.Forms.Button();
this.plaintextInput = new System.Windows.Forms.TextBox();
this.randomPlaintext = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.randomKey = new System.Windows.Forms.Button();
this.keyInput = new System.Windows.Forms.TextBox();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.button1 = new System.Windows.Forms.Button();
this.Exit = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.HashCode = new System.Windows.Forms.Button();
this.HashCodeOutput = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.messageInput = new System.Windows.Forms.RichTextBox();
this.label1 = new System.Windows.Forms.Label();
this.randomInput = new System.Windows.Forms.Button();
this.openMessage = new System.Windows.Forms.Button();
this.clearAll = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(12, 12);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(617, 480);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.groupBox6);
this.tabPage1.Controls.Add(this.groupBox3);
this.tabPage1.Location = new System.Drawing.Point(4, 21);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(609, 455);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "实验一 AES";
this.tabPage1.UseVisualStyleBackColor = true;
//
// groupBox6
//
this.groupBox6.BackColor = System.Drawing.Color.Transparent;
this.groupBox6.Controls.Add(this.label4);
this.groupBox6.Controls.Add(this.label3);
this.groupBox6.Controls.Add(this.button3);
this.groupBox6.Controls.Add(this.button2);
this.groupBox6.Controls.Add(this.plaintextOutput);
this.groupBox6.Controls.Add(this.ciphertextOutput);
this.groupBox6.Location = new System.Drawing.Point(6, 259);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(597, 190);
this.groupBox6.TabIndex = 4;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "加密和解密";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(6, 122);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(53, 12);
this.label4.TabIndex = 5;
this.label4.Text = "输出明文";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(8, 51);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 4;
this.label3.Text = "输出密文";
//
// button3
//
this.button3.Location = new System.Drawing.Point(363, 20);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(117, 23);
this.button3.TabIndex = 3;
this.button3.Text = "解密密文";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(143, 20);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(117, 23);
this.button2.TabIndex = 2;
this.button2.Text = "加密明文";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// plaintextOutput
//
this.plaintextOutput.Location = new System.Drawing.Point(67, 119);
this.plaintextOutput.Multiline = true;
this.plaintextOutput.Name = "plaintextOutput";
this.plaintextOutput.ReadOnly = true;
this.plaintextOutput.Size = new System.Drawing.Size(518, 65);
this.plaintextOutput.TabIndex = 1;
//
// ciphertextOutput
//
this.ciphertextOutput.Location = new System.Drawing.Point(67, 48);
this.ciphertextOutput.Multiline = true;
this.ciphertextOutput.Name = "ciphertextOutput";
this.ciphertextOutput.Size = new System.Drawing.Size(518, 65);
this.ciphertextOutput.TabIndex = 0;
//
// groupBox3
//
this.groupBox3.BackColor = System.Drawing.Color.Transparent;
this.groupBox3.Controls.Add(this.groupBox5);
this.groupBox3.Controls.Add(this.groupBox4);
this.groupBox3.Location = new System.Drawing.Point(6, 6);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(597, 247);
this.groupBox3.TabIndex = 1;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "输入";
//
// groupBox5
//
this.groupBox5.BackColor = System.Drawing.Color.Transparent;
this.groupBox5.Controls.Add(this.Clear);
this.groupBox5.Controls.Add(this.plaintextInput);
this.groupBox5.Controls.Add(this.randomPlaintext);
this.groupBox5.Controls.Add(this.label2);
this.groupBox5.Location = new System.Drawing.Point(10, 14);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(581, 112);
this.groupBox5.TabIndex = 3;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "明文";
//
// Clear
//
this.Clear.Location = new System.Drawing.Point(500, 12);
this.Clear.Name = "Clear";
this.Clear.Size = new System.Drawing.Size(75, 23);
this.Clear.TabIndex = 3;
this.Clear.Text = "清空";
this.Clear.UseVisualStyleBackColor = true;
this.Clear.Click += new System.EventHandler(this.Clear_Click);
//
// plaintextInput
//
this.plaintextInput.Location = new System.Drawing.Point(6, 41);
this.plaintextInput.Multiline = true;
this.plaintextInput.Name = "plaintextInput";
this.plaintextInput.Size = new System.Drawing.Size(569, 65);
this.plaintextInput.TabIndex = 0;
//
// randomPlaintext
//
this.randomPlaintext.Location = new System.Drawing.Point(65, 12);
this.randomPlaintext.Name = "randomPlaintext";
this.randomPlaintext.Size = new System.Drawing.Size(75, 23);
this.randomPlaintext.TabIndex = 1;
this.randomPlaintext.Text = "随机输入";
this.randomPlaintext.UseVisualStyleBackColor = true;
this.randomPlaintext.Click += new System.EventHandler(this.randomPlaintext_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 17);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
this.label2.Text = "自主输入";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.randomKey);
this.groupBox4.Controls.Add(this.keyInput);
this.groupBox4.Controls.Add(this.radioButton3);
this.groupBox4.Controls.Add(this.radioButton2);
this.groupBox4.Controls.Add(this.radioButton1);
this.groupBox4.Location = new System.Drawing.Point(10, 126);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(581, 115);
this.groupBox4.TabIndex = 2;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "密钥";
//
// randomKey
//
this.randomKey.Location = new System.Drawing.Point(476, 17);
this.randomKey.Name = "randomKey";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -