⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 AES加密算法 密码学课程设计
💻 CS
字号:
namespace AES_TEST
{
    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.keysizegroupbox = new System.Windows.Forms.GroupBox();
            this.key256 = new System.Windows.Forms.RadioButton();
            this.key192 = new System.Windows.Forms.RadioButton();
            this.key128 = new System.Windows.Forms.RadioButton();
            this.cipherbutton = new System.Windows.Forms.Button();
            this.keyBox = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.plaintextbox = new System.Windows.Forms.RichTextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.ciphertextbox = new System.Windows.Forms.RichTextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.ciphertextbox2 = new System.Windows.Forms.RichTextBox();
            this.plaintextbox2 = new System.Windows.Forms.RichTextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.decipherbutton = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label6 = new System.Windows.Forms.Label();
            this.keysizegroupbox.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // keysizegroupbox
            // 
            this.keysizegroupbox.BackColor = System.Drawing.SystemColors.Control;
            this.keysizegroupbox.Controls.Add(this.key256);
            this.keysizegroupbox.Controls.Add(this.key192);
            this.keysizegroupbox.Controls.Add(this.key128);
            this.keysizegroupbox.Location = new System.Drawing.Point(12, 12);
            this.keysizegroupbox.Name = "keysizegroupbox";
            this.keysizegroupbox.Size = new System.Drawing.Size(295, 42);
            this.keysizegroupbox.TabIndex = 0;
            this.keysizegroupbox.TabStop = false;
            this.keysizegroupbox.Text = "选择密钥长度";
            // 
            // key256
            // 
            this.key256.AutoSize = true;
            this.key256.Location = new System.Drawing.Point(176, 20);
            this.key256.Name = "key256";
            this.key256.Size = new System.Drawing.Size(59, 16);
            this.key256.TabIndex = 2;
            this.key256.Text = "256bit";
            this.key256.UseVisualStyleBackColor = true;
            // 
            // key192
            // 
            this.key192.AutoSize = true;
            this.key192.Location = new System.Drawing.Point(96, 20);
            this.key192.Name = "key192";
            this.key192.Size = new System.Drawing.Size(59, 16);
            this.key192.TabIndex = 1;
            this.key192.Text = "192bit";
            this.key192.UseVisualStyleBackColor = true;
            // 
            // key128
            // 
            this.key128.AutoSize = true;
            this.key128.Checked = true;
            this.key128.Location = new System.Drawing.Point(26, 20);
            this.key128.Name = "key128";
            this.key128.Size = new System.Drawing.Size(59, 16);
            this.key128.TabIndex = 0;
            this.key128.TabStop = true;
            this.key128.Text = "128bit";
            this.key128.UseVisualStyleBackColor = true;
            // 
            // cipherbutton
            // 
            this.cipherbutton.Location = new System.Drawing.Point(237, 97);
            this.cipherbutton.Name = "cipherbutton";
            this.cipherbutton.Size = new System.Drawing.Size(89, 23);
            this.cipherbutton.TabIndex = 1;
            this.cipherbutton.Text = "加密";
            this.cipherbutton.UseVisualStyleBackColor = true;
            this.cipherbutton.Click += new System.EventHandler(this.cipherbutton_Click);
            // 
            // keyBox
            // 
            this.keyBox.Location = new System.Drawing.Point(343, 33);
            this.keyBox.Name = "keyBox";
            this.keyBox.Size = new System.Drawing.Size(300, 21);
            this.keyBox.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(341, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(263, 12);
            this.label1.TabIndex = 3;
            this.label1.Text = "请输入密钥(大于8位,或大于12位,或大于16位):";
            // 
            // plaintextbox
            // 
            this.plaintextbox.Location = new System.Drawing.Point(6, 41);
            this.plaintextbox.Name = "plaintextbox";
            this.plaintextbox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal;
            this.plaintextbox.Size = new System.Drawing.Size(258, 35);
            this.plaintextbox.TabIndex = 4;
            this.plaintextbox.Text = "";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(4, 17);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 12);
            this.label2.TabIndex = 5;
            this.label2.Text = "请输入明文:";
            // 
            // ciphertextbox
            // 
            this.ciphertextbox.Location = new System.Drawing.Point(317, 41);
            this.ciphertextbox.Name = "ciphertextbox";
            this.ciphertextbox.ShowSelectionMargin = true;
            this.ciphertextbox.Size = new System.Drawing.Size(290, 35);
            this.ciphertextbox.TabIndex = 6;
            this.ciphertextbox.Text = "";
            this.ciphertextbox.UseWaitCursor = true;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(290, 17);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(65, 12);
            this.label3.TabIndex = 7;
            this.label3.Text = "输出密文:";
            // 
            // ciphertextbox2
            // 
            this.ciphertextbox2.Location = new System.Drawing.Point(13, 52);
            this.ciphertextbox2.Name = "ciphertextbox2";
            this.ciphertextbox2.Size = new System.Drawing.Size(250, 42);
            this.ciphertextbox2.TabIndex = 8;
            this.ciphertextbox2.Text = "";
            // 
            // plaintextbox2
            // 
            this.plaintextbox2.Location = new System.Drawing.Point(316, 52);
            this.plaintextbox2.Name = "plaintextbox2";
            this.plaintextbox2.Size = new System.Drawing.Size(290, 42);
            this.plaintextbox2.TabIndex = 9;
            this.plaintextbox2.Text = "";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(11, 26);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(77, 12);
            this.label4.TabIndex = 10;
            this.label4.Text = "请输入密文:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(314, 26);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(65, 12);
            this.label5.TabIndex = 11;
            this.label5.Text = "输出明文:";
            // 
            // decipherbutton
            // 
            this.decipherbutton.Location = new System.Drawing.Point(236, 120);
            this.decipherbutton.Name = "decipherbutton";
            this.decipherbutton.Size = new System.Drawing.Size(89, 23);
            this.decipherbutton.TabIndex = 12;
            this.decipherbutton.Text = "解密";
            this.decipherbutton.UseVisualStyleBackColor = true;
            this.decipherbutton.Click += new System.EventHandler(this.decipherbutton_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.cipherbutton);
            this.groupBox1.Controls.Add(this.plaintextbox);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.ciphertextbox);
            this.groupBox1.Location = new System.Drawing.Point(11, 74);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(632, 126);
            this.groupBox1.TabIndex = 13;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "加密";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(248, 216);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(175, 23);
            this.button1.TabIndex = 2;
            this.button1.Text = "复制密文到下面的密文对话框";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.UseWaitCursor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.plaintextbox2);
            this.groupBox2.Controls.Add(this.label5);
            this.groupBox2.Controls.Add(this.decipherbutton);
            this.groupBox2.Controls.Add(this.label4);
            this.groupBox2.Controls.Add(this.ciphertextbox2);
            this.groupBox2.Location = new System.Drawing.Point(12, 245);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(631, 159);
            this.groupBox2.TabIndex = 14;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "解密";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(530, 425);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(113, 12);
            this.label6.TabIndex = 15;
            this.label6.Text = "制作人:王印_052307";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.ClientSize = new System.Drawing.Size(666, 445);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.keyBox);
            this.Controls.Add(this.keysizegroupbox);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.groupBox2);
            this.Name = "Form1";
            this.Text = "AES加密与解密";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.keysizegroupbox.ResumeLayout(false);
            this.keysizegroupbox.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.GroupBox keysizegroupbox;
        private System.Windows.Forms.RadioButton key256;
        private System.Windows.Forms.RadioButton key192;
        private System.Windows.Forms.RadioButton key128;
        private System.Windows.Forms.Button cipherbutton;
        private System.Windows.Forms.TextBox keyBox;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.RichTextBox plaintextbox;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.RichTextBox ciphertextbox2;
        private System.Windows.Forms.RichTextBox plaintextbox2;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Button decipherbutton;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.GroupBox groupBox2;
        public System.Windows.Forms.RichTextBox ciphertextbox;
        private System.Windows.Forms.Label label6;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -