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

📄 form1.designer.cs

📁 RSA算法演示程序
💻 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.cbox = new System.Windows.Forms.TextBox();
            this.mbox = new System.Windows.Forms.TextBox();
            this.btDecoding = new System.Windows.Forms.Button();
            this.btEncoding = new System.Windows.Forms.Button();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.publicKey = new System.Windows.Forms.TextBox();
            this.privateKey = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // cbox
            // 
            this.cbox.Location = new System.Drawing.Point(426, 240);
            this.cbox.Multiline = true;
            this.cbox.Name = "cbox";
            this.cbox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.cbox.Size = new System.Drawing.Size(334, 182);
            this.cbox.TabIndex = 19;
            // 
            // mbox
            // 
            this.mbox.Location = new System.Drawing.Point(14, 240);
            this.mbox.Multiline = true;
            this.mbox.Name = "mbox";
            this.mbox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.mbox.Size = new System.Drawing.Size(334, 182);
            this.mbox.TabIndex = 20;
            // 
            // btDecoding
            // 
            this.btDecoding.Location = new System.Drawing.Point(559, 198);
            this.btDecoding.Name = "btDecoding";
            this.btDecoding.Size = new System.Drawing.Size(75, 23);
            this.btDecoding.TabIndex = 16;
            this.btDecoding.Text = "解密";
            this.btDecoding.UseVisualStyleBackColor = true;
            this.btDecoding.Click += new System.EventHandler(this.btDecoding_Click);
            // 
            // btEncoding
            // 
            this.btEncoding.Location = new System.Drawing.Point(140, 198);
            this.btEncoding.Name = "btEncoding";
            this.btEncoding.Size = new System.Drawing.Size(75, 23);
            this.btEncoding.TabIndex = 15;
            this.btEncoding.Text = "加密";
            this.btEncoding.UseVisualStyleBackColor = true;
            this.btEncoding.Click += new System.EventHandler(this.btEncoding_Click);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(424, 212);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(29, 12);
            this.label5.TabIndex = 14;
            this.label5.Text = "密文";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 212);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(29, 12);
            this.label4.TabIndex = 13;
            this.label4.Text = "明文";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(333, 119);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 21;
            this.button1.Text = "生成密钥";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // publicKey
            // 
            this.publicKey.Location = new System.Drawing.Point(58, 15);
            this.publicKey.Multiline = true;
            this.publicKey.Name = "publicKey";
            this.publicKey.Size = new System.Drawing.Size(250, 127);
            this.publicKey.TabIndex = 22;
            // 
            // privateKey
            // 
            this.privateKey.Location = new System.Drawing.Point(459, 18);
            this.privateKey.Multiline = true;
            this.privateKey.Name = "privateKey";
            this.privateKey.Size = new System.Drawing.Size(291, 124);
            this.privateKey.TabIndex = 23;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 15);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(29, 12);
            this.label2.TabIndex = 24;
            this.label2.Text = "公钥";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(413, 21);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(29, 12);
            this.label3.TabIndex = 25;
            this.label3.Text = "私钥";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(785, 445);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.privateKey);
            this.Controls.Add(this.publicKey);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.cbox);
            this.Controls.Add(this.mbox);
            this.Controls.Add(this.btDecoding);
            this.Controls.Add(this.btEncoding);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label4);
            this.Name = "Form1";
            this.Text = "RSA";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox cbox;
        private System.Windows.Forms.TextBox mbox;
        private System.Windows.Forms.Button btDecoding;
        private System.Windows.Forms.Button btEncoding;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.TextBox publicKey;
        private System.Windows.Forms.TextBox privateKey;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
    }
}

⌨️ 快捷键说明

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