📄 form1.designer.cs
字号:
namespace SimpleCryptographer
{
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 Form 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
/// </summary>
private void InitializeComponent()
{
this.rbDES = new System.Windows.Forms.RadioButton();
this.rbAES = new System.Windows.Forms.RadioButton();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.txtEncrypted = new System.Windows.Forms.TextBox();
this.txtPlainText = new System.Windows.Forms.TextBox();
this.txtFile = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.lblEncryptedFilename = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.btnTextEncrypt = new System.Windows.Forms.Button();
this.btnFileDecrypt = new System.Windows.Forms.Button();
this.btnFileEncrypt = new System.Windows.Forms.Button();
this.btnTextDecrypt = new System.Windows.Forms.Button();
this.BoxAlgorithm = new System.Windows.Forms.GroupBox();
this.BoxFileCrypt = new System.Windows.Forms.GroupBox();
this.txtAlteredFile = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.txtKey_File = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.btnFileSelect = new System.Windows.Forms.Button();
this.BoxTextCrypt = new System.Windows.Forms.GroupBox();
this.label6 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.txtKey = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.lblProgress = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.BoxElapsedTime = new System.Windows.Forms.GroupBox();
this.rbResult = new System.Windows.Forms.RadioButton();
this.rbContinuous = new System.Windows.Forms.RadioButton();
this.BoxAlgorithm.SuspendLayout();
this.BoxFileCrypt.SuspendLayout();
this.BoxTextCrypt.SuspendLayout();
this.groupBox1.SuspendLayout();
this.BoxElapsedTime.SuspendLayout();
this.SuspendLayout();
//
// rbDES
//
this.rbDES.AutoSize = true;
this.rbDES.Checked = true;
this.rbDES.Location = new System.Drawing.Point(21, 26);
this.rbDES.Name = "rbDES";
this.rbDES.Size = new System.Drawing.Size(47, 16);
this.rbDES.TabIndex = 0;
this.rbDES.TabStop = true;
this.rbDES.Text = "DES";
this.rbDES.UseVisualStyleBackColor = true;
this.rbDES.CheckedChanged += new System.EventHandler(this.rbDES_CheckedChanged);
//
// rbAES
//
this.rbAES.AutoSize = true;
this.rbAES.Location = new System.Drawing.Point(93, 26);
this.rbAES.Name = "rbAES";
this.rbAES.Size = new System.Drawing.Size(47, 16);
this.rbAES.TabIndex = 1;
this.rbAES.Text = "AES";
this.rbAES.UseVisualStyleBackColor = true;
this.rbAES.CheckedChanged += new System.EventHandler(this.rbAES_CheckedChanged);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// txtEncrypted
//
this.txtEncrypted.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.txtEncrypted.Location = new System.Drawing.Point(53, 181);
this.txtEncrypted.Multiline = true;
this.txtEncrypted.Name = "txtEncrypted";
this.txtEncrypted.ReadOnly = true;
this.txtEncrypted.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtEncrypted.Size = new System.Drawing.Size(396, 81);
this.txtEncrypted.TabIndex = 3;
//
// txtPlainText
//
this.txtPlainText.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.txtPlainText.Location = new System.Drawing.Point(53, 23);
this.txtPlainText.Multiline = true;
this.txtPlainText.Name = "txtPlainText";
this.txtPlainText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtPlainText.Size = new System.Drawing.Size(396, 72);
this.txtPlainText.TabIndex = 4;
//
// txtFile
//
this.txtFile.Location = new System.Drawing.Point(53, 14);
this.txtFile.Name = "txtFile";
this.txtFile.ReadOnly = true;
this.txtFile.Size = new System.Drawing.Size(283, 21);
this.txtFile.TabIndex = 5;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(37, 12);
this.label1.TabIndex = 6;
this.label1.Text = "File : ";
//
// lblEncryptedFilename
//
this.lblEncryptedFilename.AutoSize = true;
this.lblEncryptedFilename.Location = new System.Drawing.Point(9, 44);
this.lblEncryptedFilename.Name = "lblEncryptedFilename";
this.lblEncryptedFilename.Size = new System.Drawing.Size(0, 12);
this.lblEncryptedFilename.TabIndex = 7;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 67);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(0, 12);
this.label3.TabIndex = 8;
//
// btnTextEncrypt
//
this.btnTextEncrypt.Location = new System.Drawing.Point(6, 273);
this.btnTextEncrypt.Name = "btnTextEncrypt";
this.btnTextEncrypt.Size = new System.Drawing.Size(104, 23);
this.btnTextEncrypt.TabIndex = 10;
this.btnTextEncrypt.Text = "Text-Encryption";
this.btnTextEncrypt.UseVisualStyleBackColor = true;
this.btnTextEncrypt.Click += new System.EventHandler(this.btnTextEncrypt_Click);
//
// btnFileDecrypt
//
this.btnFileDecrypt.Location = new System.Drawing.Point(117, 119);
this.btnFileDecrypt.Name = "btnFileDecrypt";
this.btnFileDecrypt.Size = new System.Drawing.Size(104, 23);
this.btnFileDecrypt.TabIndex = 11;
this.btnFileDecrypt.Text = "File-Decryption";
this.btnFileDecrypt.UseVisualStyleBackColor = true;
this.btnFileDecrypt.Click += new System.EventHandler(this.btnFileDecrypt_Click);
//
// btnFileEncrypt
//
this.btnFileEncrypt.Location = new System.Drawing.Point(8, 119);
this.btnFileEncrypt.Name = "btnFileEncrypt";
this.btnFileEncrypt.Size = new System.Drawing.Size(104, 23);
this.btnFileEncrypt.TabIndex = 12;
this.btnFileEncrypt.Text = "File-Encryption";
this.btnFileEncrypt.UseVisualStyleBackColor = true;
this.btnFileEncrypt.Click += new System.EventHandler(this.btnFileEncrypt_Click);
//
// btnTextDecrypt
//
this.btnTextDecrypt.Location = new System.Drawing.Point(118, 273);
this.btnTextDecrypt.Name = "btnTextDecrypt";
this.btnTextDecrypt.Size = new System.Drawing.Size(104, 23);
this.btnTextDecrypt.TabIndex = 13;
this.btnTextDecrypt.Text = "Text-Decryption";
this.btnTextDecrypt.UseVisualStyleBackColor = true;
this.btnTextDecrypt.Click += new System.EventHandler(this.btnTextDecrypt_Click);
//
// BoxAlgorithm
//
this.BoxAlgorithm.Controls.Add(this.rbAES);
this.BoxAlgorithm.Controls.Add(this.rbDES);
this.BoxAlgorithm.Location = new System.Drawing.Point(22, 27);
this.BoxAlgorithm.Name = "BoxAlgorithm";
this.BoxAlgorithm.Size = new System.Drawing.Size(170, 58);
this.BoxAlgorithm.TabIndex = 14;
this.BoxAlgorithm.TabStop = false;
this.BoxAlgorithm.Text = "Cryptography Algorithm";
//
// BoxFileCrypt
//
this.BoxFileCrypt.Controls.Add(this.txtAlteredFile);
this.BoxFileCrypt.Controls.Add(this.label9);
this.BoxFileCrypt.Controls.Add(this.label7);
this.BoxFileCrypt.Controls.Add(this.txtFile);
this.BoxFileCrypt.Controls.Add(this.txtKey_File);
this.BoxFileCrypt.Controls.Add(this.label1);
this.BoxFileCrypt.Controls.Add(this.label8);
this.BoxFileCrypt.Controls.Add(this.btnFileSelect);
this.BoxFileCrypt.Controls.Add(this.lblEncryptedFilename);
this.BoxFileCrypt.Controls.Add(this.label3);
this.BoxFileCrypt.Controls.Add(this.btnFileEncrypt);
this.BoxFileCrypt.Controls.Add(this.btnFileDecrypt);
this.BoxFileCrypt.Location = new System.Drawing.Point(22, 193);
this.BoxFileCrypt.Name = "BoxFileCrypt";
this.BoxFileCrypt.Size = new System.Drawing.Size(467, 153);
this.BoxFileCrypt.TabIndex = 15;
this.BoxFileCrypt.TabStop = false;
this.BoxFileCrypt.Text = "Encryption and Decryption for files";
//
// txtAlteredFile
//
this.txtAlteredFile.Location = new System.Drawing.Point(165, 41);
this.txtAlteredFile.Name = "txtAlteredFile";
this.txtAlteredFile.ReadOnly = true;
this.txtAlteredFile.Size = new System.Drawing.Size(283, 21);
this.txtAlteredFile.TabIndex = 24;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(9, 44);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(118, 12);
this.label9.TabIndex = 25;
this.label9.Text = "Altered File Name : ";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -