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

📄 frmcrypto.designer.cs

📁 在设计程序时,需要经常计算一个字串的哈希值,得到加密文本,生成加密过的配置文件或都转换EXCEL文件到SQL数据库等等,根据自己习惯定制部分功能,由于时间关系,没有详细说明
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace LingangTools
{
    partial class FrmCrypto
    {
        /// <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.groupBox_Password = new System.Windows.Forms.GroupBox();
            this.btn_CopyAsCode = new System.Windows.Forms.Button();
            this.txt_GetKeyAndIv = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.txt_IvBase64 = new System.Windows.Forms.TextBox();
            this.txt_Iv = new System.Windows.Forms.TextBox();
            this.txt_KeyBase64 = new System.Windows.Forms.TextBox();
            this.txt_Key = new System.Windows.Forms.TextBox();
            this.txt_Password = new System.Windows.Forms.TextBox();
            this.groupBox_PlainText = new System.Windows.Forms.GroupBox();
            this.txt_PlainText = new System.Windows.Forms.TextBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.radioButton_File = new System.Windows.Forms.RadioButton();
            this.radioButton_Text = new System.Windows.Forms.RadioButton();
            this.btn_OpenFile = new System.Windows.Forms.Button();
            this.btn_Crypto = new System.Windows.Forms.Button();
            this.groupBox_CryptoBase64Text = new System.Windows.Forms.GroupBox();
            this.txt_Base64CryptoText = new System.Windows.Forms.TextBox();
            this.groupbox_BinaryData = new System.Windows.Forms.GroupBox();
            this.txt_BinaryCryptoText = new System.Windows.Forms.TextBox();
            this.ofd_OpenFile = new System.Windows.Forms.OpenFileDialog();
            this.groupBox_Password.SuspendLayout();
            this.groupBox_PlainText.SuspendLayout();
            this.panel1.SuspendLayout();
            this.groupBox_CryptoBase64Text.SuspendLayout();
            this.groupbox_BinaryData.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox_Password
            // 
            this.groupBox_Password.Controls.Add(this.btn_CopyAsCode);
            this.groupBox_Password.Controls.Add(this.txt_GetKeyAndIv);
            this.groupBox_Password.Controls.Add(this.label3);
            this.groupBox_Password.Controls.Add(this.label2);
            this.groupBox_Password.Controls.Add(this.label1);
            this.groupBox_Password.Controls.Add(this.txt_IvBase64);
            this.groupBox_Password.Controls.Add(this.txt_Iv);
            this.groupBox_Password.Controls.Add(this.txt_KeyBase64);
            this.groupBox_Password.Controls.Add(this.txt_Key);
            this.groupBox_Password.Controls.Add(this.txt_Password);
            this.groupBox_Password.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox_Password.Location = new System.Drawing.Point(0, 0);
            this.groupBox_Password.Name = "groupBox_Password";
            this.groupBox_Password.Size = new System.Drawing.Size(611, 140);
            this.groupBox_Password.TabIndex = 0;
            this.groupBox_Password.TabStop = false;
            this.groupBox_Password.Text = "密码:";
            // 
            // btn_CopyAsCode
            // 
            this.btn_CopyAsCode.Location = new System.Drawing.Point(496, 35);
            this.btn_CopyAsCode.Name = "btn_CopyAsCode";
            this.btn_CopyAsCode.Size = new System.Drawing.Size(103, 23);
            this.btn_CopyAsCode.TabIndex = 2;
            this.btn_CopyAsCode.Text = "复制为代码";
            this.btn_CopyAsCode.UseVisualStyleBackColor = true;
            this.btn_CopyAsCode.Click += new System.EventHandler(this.btn_CopyAsCode_Click);
            // 
            // txt_GetKeyAndIv
            // 
            this.txt_GetKeyAndIv.Location = new System.Drawing.Point(496, 10);
            this.txt_GetKeyAndIv.Name = "txt_GetKeyAndIv";
            this.txt_GetKeyAndIv.Size = new System.Drawing.Size(103, 23);
            this.txt_GetKeyAndIv.TabIndex = 2;
            this.txt_GetKeyAndIv.Text = "初始化密钥";
            this.txt_GetKeyAndIv.UseVisualStyleBackColor = true;
            this.txt_GetKeyAndIv.Click += new System.EventHandler(this.txt_GetKeyAndIv_Click);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 91);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(77, 12);
            this.label3.TabIndex = 1;
            this.label3.Text = "生成的向量:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 38);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "生成的密钥:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 15);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(89, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "初始密码文本:";
            // 
            // txt_IvBase64
            // 
            this.txt_IvBase64.Location = new System.Drawing.Point(107, 113);
            this.txt_IvBase64.Name = "txt_IvBase64";
            this.txt_IvBase64.Size = new System.Drawing.Size(383, 21);
            this.txt_IvBase64.TabIndex = 0;
            // 
            // txt_Iv
            // 
            this.txt_Iv.Location = new System.Drawing.Point(107, 88);
            this.txt_Iv.Name = "txt_Iv";
            this.txt_Iv.Size = new System.Drawing.Size(383, 21);
            this.txt_Iv.TabIndex = 0;
            // 
            // txt_KeyBase64
            // 
            this.txt_KeyBase64.Location = new System.Drawing.Point(107, 61);
            this.txt_KeyBase64.Name = "txt_KeyBase64";
            this.txt_KeyBase64.Size = new System.Drawing.Size(383, 21);
            this.txt_KeyBase64.TabIndex = 0;
            // 
            // txt_Key
            // 
            this.txt_Key.Location = new System.Drawing.Point(107, 39);
            this.txt_Key.Name = "txt_Key";
            this.txt_Key.Size = new System.Drawing.Size(383, 21);
            this.txt_Key.TabIndex = 0;
            // 
            // txt_Password
            // 
            this.txt_Password.Location = new System.Drawing.Point(107, 12);
            this.txt_Password.Name = "txt_Password";
            this.txt_Password.Size = new System.Drawing.Size(383, 21);
            this.txt_Password.TabIndex = 0;
            // 
            // groupBox_PlainText
            // 
            this.groupBox_PlainText.Controls.Add(this.txt_PlainText);
            this.groupBox_PlainText.Controls.Add(this.panel1);
            this.groupBox_PlainText.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox_PlainText.Location = new System.Drawing.Point(0, 140);
            this.groupBox_PlainText.Name = "groupBox_PlainText";
            this.groupBox_PlainText.Size = new System.Drawing.Size(611, 142);
            this.groupBox_PlainText.TabIndex = 1;

⌨️ 快捷键说明

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