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

📄 frmcrypto.designer.cs

📁 在设计程序时,需要经常计算一个字串的哈希值,得到加密文本,生成加密过的配置文件或都转换EXCEL文件到SQL数据库等等,根据自己习惯定制部分功能,由于时间关系,没有详细说明
💻 CS
📖 第 1 页 / 共 2 页
字号:
            this.groupBox_PlainText.TabStop = false;
            this.groupBox_PlainText.Text = "明文";
            // 
            // txt_PlainText
            // 
            this.txt_PlainText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txt_PlainText.Location = new System.Drawing.Point(3, 17);
            this.txt_PlainText.Multiline = true;
            this.txt_PlainText.Name = "txt_PlainText";
            this.txt_PlainText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txt_PlainText.Size = new System.Drawing.Size(532, 122);
            this.txt_PlainText.TabIndex = 1;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.radioButton_File);
            this.panel1.Controls.Add(this.radioButton_Text);
            this.panel1.Controls.Add(this.btn_OpenFile);
            this.panel1.Controls.Add(this.btn_Crypto);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(535, 17);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(73, 122);
            this.panel1.TabIndex = 0;
            // 
            // radioButton_File
            // 
            this.radioButton_File.AutoSize = true;
            this.radioButton_File.Location = new System.Drawing.Point(6, 25);
            this.radioButton_File.Name = "radioButton_File";
            this.radioButton_File.Size = new System.Drawing.Size(47, 16);
            this.radioButton_File.TabIndex = 5;
            this.radioButton_File.Text = "文件";
            this.radioButton_File.UseVisualStyleBackColor = true;
            // 
            // radioButton_Text
            // 
            this.radioButton_Text.AutoSize = true;
            this.radioButton_Text.Checked = true;
            this.radioButton_Text.Location = new System.Drawing.Point(6, 3);
            this.radioButton_Text.Name = "radioButton_Text";
            this.radioButton_Text.Size = new System.Drawing.Size(47, 16);
            this.radioButton_Text.TabIndex = 4;
            this.radioButton_Text.TabStop = true;
            this.radioButton_Text.Text = "文本";
            this.radioButton_Text.UseVisualStyleBackColor = true;
            this.radioButton_Text.CheckedChanged += new System.EventHandler(this.radioButton_Text_CheckedChanged);
            // 
            // btn_OpenFile
            // 
            this.btn_OpenFile.Enabled = false;
            this.btn_OpenFile.Location = new System.Drawing.Point(6, 67);
            this.btn_OpenFile.Name = "btn_OpenFile";
            this.btn_OpenFile.Size = new System.Drawing.Size(57, 23);
            this.btn_OpenFile.TabIndex = 3;
            this.btn_OpenFile.Text = "打开";
            this.btn_OpenFile.UseVisualStyleBackColor = true;
            this.btn_OpenFile.Click += new System.EventHandler(this.btn_OpenFile_Click);
            // 
            // btn_Crypto
            // 
            this.btn_Crypto.Enabled = false;
            this.btn_Crypto.Location = new System.Drawing.Point(6, 96);
            this.btn_Crypto.Name = "btn_Crypto";
            this.btn_Crypto.Size = new System.Drawing.Size(57, 23);
            this.btn_Crypto.TabIndex = 3;
            this.btn_Crypto.Text = "加密";
            this.btn_Crypto.UseVisualStyleBackColor = true;
            this.btn_Crypto.Click += new System.EventHandler(this.btn_Crypto_Click);
            // 
            // groupBox_CryptoBase64Text
            // 
            this.groupBox_CryptoBase64Text.Controls.Add(this.txt_Base64CryptoText);
            this.groupBox_CryptoBase64Text.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox_CryptoBase64Text.Location = new System.Drawing.Point(0, 282);
            this.groupBox_CryptoBase64Text.Name = "groupBox_CryptoBase64Text";
            this.groupBox_CryptoBase64Text.Size = new System.Drawing.Size(611, 165);
            this.groupBox_CryptoBase64Text.TabIndex = 2;
            this.groupBox_CryptoBase64Text.TabStop = false;
            this.groupBox_CryptoBase64Text.Text = "Base64密文";
            // 
            // txt_Base64CryptoText
            // 
            this.txt_Base64CryptoText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txt_Base64CryptoText.Location = new System.Drawing.Point(3, 17);
            this.txt_Base64CryptoText.Multiline = true;
            this.txt_Base64CryptoText.Name = "txt_Base64CryptoText";
            this.txt_Base64CryptoText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txt_Base64CryptoText.Size = new System.Drawing.Size(605, 145);
            this.txt_Base64CryptoText.TabIndex = 0;
            this.txt_Base64CryptoText.DoubleClick += new System.EventHandler(this.txt_Base64CryptoText_DoubleClick);
            // 
            // groupbox_BinaryData
            // 
            this.groupbox_BinaryData.Controls.Add(this.txt_BinaryCryptoText);
            this.groupbox_BinaryData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupbox_BinaryData.Location = new System.Drawing.Point(0, 447);
            this.groupbox_BinaryData.Name = "groupbox_BinaryData";
            this.groupbox_BinaryData.Size = new System.Drawing.Size(611, 90);
            this.groupbox_BinaryData.TabIndex = 3;
            this.groupbox_BinaryData.TabStop = false;
            this.groupbox_BinaryData.Text = "二进制密文";
            // 
            // txt_BinaryCryptoText
            // 
            this.txt_BinaryCryptoText.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txt_BinaryCryptoText.Location = new System.Drawing.Point(3, 17);
            this.txt_BinaryCryptoText.Multiline = true;
            this.txt_BinaryCryptoText.Name = "txt_BinaryCryptoText";
            this.txt_BinaryCryptoText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txt_BinaryCryptoText.Size = new System.Drawing.Size(605, 70);
            this.txt_BinaryCryptoText.TabIndex = 0;
            this.txt_BinaryCryptoText.DoubleClick += new System.EventHandler(this.txt_BinaryCryptoText_DoubleClick);
            // 
            // ofd_OpenFile
            // 
            this.ofd_OpenFile.FileName = "openFileDialog1";
            // 
            // FrmCrypto
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(611, 537);
            this.Controls.Add(this.groupbox_BinaryData);
            this.Controls.Add(this.groupBox_CryptoBase64Text);
            this.Controls.Add(this.groupBox_PlainText);
            this.Controls.Add(this.groupBox_Password);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "FrmCrypto";
            this.Text = "对称加密";
            this.groupBox_Password.ResumeLayout(false);
            this.groupBox_Password.PerformLayout();
            this.groupBox_PlainText.ResumeLayout(false);
            this.groupBox_PlainText.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.groupBox_CryptoBase64Text.ResumeLayout(false);
            this.groupBox_CryptoBase64Text.PerformLayout();
            this.groupbox_BinaryData.ResumeLayout(false);
            this.groupbox_BinaryData.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox_Password;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txt_Password;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txt_Iv;
        private System.Windows.Forms.TextBox txt_Key;
        private System.Windows.Forms.Button txt_GetKeyAndIv;
        private System.Windows.Forms.Button btn_CopyAsCode;
        private System.Windows.Forms.GroupBox groupBox_PlainText;
        private System.Windows.Forms.GroupBox groupBox_CryptoBase64Text;
        private System.Windows.Forms.GroupBox groupbox_BinaryData;
        private System.Windows.Forms.TextBox txt_Base64CryptoText;
        private System.Windows.Forms.TextBox txt_BinaryCryptoText;
        private System.Windows.Forms.TextBox txt_IvBase64;
        private System.Windows.Forms.TextBox txt_KeyBase64;
        private System.Windows.Forms.TextBox txt_PlainText;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Button btn_Crypto;
        private System.Windows.Forms.RadioButton radioButton_File;
        private System.Windows.Forms.RadioButton radioButton_Text;
        private System.Windows.Forms.Button btn_OpenFile;
        private System.Windows.Forms.OpenFileDialog ofd_OpenFile;
    }
}

⌨️ 快捷键说明

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