📄 form1.designer.cs
字号:
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(51, 91);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(389, 12);
this.label7.TabIndex = 22;
this.label7.Text = "The key is only allowed for Hex-Decimal( ex : 0123456789ABCDEF )";
//
// txtKey_File
//
this.txtKey_File.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.txtKey_File.Location = new System.Drawing.Point(53, 67);
this.txtKey_File.MaxLength = 16;
this.txtKey_File.Name = "txtKey_File";
this.txtKey_File.Size = new System.Drawing.Size(396, 21);
this.txtKey_File.TabIndex = 23;
this.txtKey_File.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtKey_File_KeyPress);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(9, 67);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(39, 12);
this.label8.TabIndex = 21;
this.label8.Text = "Key : ";
//
// btnFileSelect
//
this.btnFileSelect.Location = new System.Drawing.Point(342, 14);
this.btnFileSelect.Name = "btnFileSelect";
this.btnFileSelect.Size = new System.Drawing.Size(75, 21);
this.btnFileSelect.TabIndex = 16;
this.btnFileSelect.Text = "Files..";
this.btnFileSelect.UseVisualStyleBackColor = true;
this.btnFileSelect.Click += new System.EventHandler(this.btnFileSelect_Click);
//
// BoxTextCrypt
//
this.BoxTextCrypt.Controls.Add(this.label6);
this.BoxTextCrypt.Controls.Add(this.label10);
this.BoxTextCrypt.Controls.Add(this.txtKey);
this.BoxTextCrypt.Controls.Add(this.label4);
this.BoxTextCrypt.Controls.Add(this.label5);
this.BoxTextCrypt.Controls.Add(this.label2);
this.BoxTextCrypt.Controls.Add(this.txtPlainText);
this.BoxTextCrypt.Controls.Add(this.txtEncrypted);
this.BoxTextCrypt.Controls.Add(this.btnTextEncrypt);
this.BoxTextCrypt.Controls.Add(this.btnTextDecrypt);
this.BoxTextCrypt.Location = new System.Drawing.Point(22, 368);
this.BoxTextCrypt.Name = "BoxTextCrypt";
this.BoxTextCrypt.Size = new System.Drawing.Size(467, 306);
this.BoxTextCrypt.TabIndex = 15;
this.BoxTextCrypt.TabStop = false;
this.BoxTextCrypt.Text = "Encryption and Decryption for texts";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(51, 134);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(389, 12);
this.label6.TabIndex = 16;
this.label6.Text = "The key is only allowed for Hex-Decimal( ex : 0123456789ABCDEF )";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(240, 284);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(177, 12);
this.label10.TabIndex = 21;
this.label10.Text = "Only for alphabet and number.";
//
// txtKey
//
this.txtKey.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.txtKey.Location = new System.Drawing.Point(53, 110);
this.txtKey.MaxLength = 16;
this.txtKey.Name = "txtKey";
this.txtKey.Size = new System.Drawing.Size(396, 21);
this.txtKey.TabIndex = 17;
this.txtKey.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtKey_KeyPress);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(4, 166);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(261, 12);
this.label4.TabIndex = 20;
this.label4.Text = "The Result text for Encryption and Decryption";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(9, 110);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(39, 12);
this.label5.TabIndex = 16;
this.label5.Text = "Key : ";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 26);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 12);
this.label2.TabIndex = 19;
this.label2.Text = "Text : ";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lblProgress);
this.groupBox1.Controls.Add(this.progressBar1);
this.groupBox1.Location = new System.Drawing.Point(22, 91);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(466, 80);
this.groupBox1.TabIndex = 22;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Progress";
//
// lblProgress
//
this.lblProgress.AutoSize = true;
this.lblProgress.Location = new System.Drawing.Point(9, 51);
this.lblProgress.Name = "lblProgress";
this.lblProgress.Size = new System.Drawing.Size(0, 12);
this.lblProgress.TabIndex = 1;
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(11, 20);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(437, 18);
this.progressBar1.TabIndex = 0;
//
// BoxElapsedTime
//
this.BoxElapsedTime.Controls.Add(this.rbResult);
this.BoxElapsedTime.Controls.Add(this.rbContinuous);
this.BoxElapsedTime.Location = new System.Drawing.Point(209, 27);
this.BoxElapsedTime.Name = "BoxElapsedTime";
this.BoxElapsedTime.Size = new System.Drawing.Size(279, 58);
this.BoxElapsedTime.TabIndex = 15;
this.BoxElapsedTime.TabStop = false;
this.BoxElapsedTime.Text = "ElapsedTime Mode";
//
// rbResult
//
this.rbResult.AutoSize = true;
this.rbResult.Location = new System.Drawing.Point(177, 26);
this.rbResult.Name = "rbResult";
this.rbResult.Size = new System.Drawing.Size(84, 16);
this.rbResult.TabIndex = 1;
this.rbResult.Text = "Only result";
this.rbResult.UseVisualStyleBackColor = true;
//
// rbContinuous
//
this.rbContinuous.AutoSize = true;
this.rbContinuous.Checked = true;
this.rbContinuous.Location = new System.Drawing.Point(21, 26);
this.rbContinuous.Name = "rbContinuous";
this.rbContinuous.Size = new System.Drawing.Size(140, 16);
this.rbContinuous.TabIndex = 0;
this.rbContinuous.TabStop = true;
this.rbContinuous.Text = "Continuous(Second)";
this.rbContinuous.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(501, 704);
this.Controls.Add(this.BoxElapsedTime);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.BoxTextCrypt);
this.Controls.Add(this.BoxFileCrypt);
this.Controls.Add(this.BoxAlgorithm);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Very Very Simple Cryptographer by WannaBe Version-3.141592";
this.Load += new System.EventHandler(this.Form1_Load);
this.BoxAlgorithm.ResumeLayout(false);
this.BoxAlgorithm.PerformLayout();
this.BoxFileCrypt.ResumeLayout(false);
this.BoxFileCrypt.PerformLayout();
this.BoxTextCrypt.ResumeLayout(false);
this.BoxTextCrypt.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.BoxElapsedTime.ResumeLayout(false);
this.BoxElapsedTime.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.RadioButton rbDES;
private System.Windows.Forms.RadioButton rbAES;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.TextBox txtEncrypted;
private System.Windows.Forms.TextBox txtPlainText;
private System.Windows.Forms.TextBox txtFile;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label lblEncryptedFilename;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnTextEncrypt;
private System.Windows.Forms.Button btnFileDecrypt;
private System.Windows.Forms.Button btnFileEncrypt;
private System.Windows.Forms.Button btnTextDecrypt;
private System.Windows.Forms.GroupBox BoxAlgorithm;
private System.Windows.Forms.GroupBox BoxFileCrypt;
private System.Windows.Forms.Button btnFileSelect;
private System.Windows.Forms.GroupBox BoxTextCrypt;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtKey;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox txtKey_File;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox txtAlteredFile;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label lblProgress;
private System.Windows.Forms.GroupBox BoxElapsedTime;
private System.Windows.Forms.RadioButton rbResult;
private System.Windows.Forms.RadioButton rbContinuous;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -