namespace Decryption_App { partial class frmMain { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.txtEncrypted = new System.Windows.Forms.TextBox(); this.txtDecrypted = new System.Windows.Forms.TextBox(); this.txtPassword = new System.Windows.Forms.TextBox(); this.btnDecrypt = new System.Windows.Forms.Button(); this.lblEncodedFile = new System.Windows.Forms.Label(); this.lblDecodedFile = new System.Windows.Forms.Label(); this.lblPassword = new System.Windows.Forms.Label(); this.btnInformation = new System.Windows.Forms.Button(); this.SuspendLayout(); // // txtEncrypted // this.txtEncrypted.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtEncrypted.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtEncrypted.Location = new System.Drawing.Point(12, 57); this.txtEncrypted.Multiline = true; this.txtEncrypted.Name = "txtEncrypted"; this.txtEncrypted.Size = new System.Drawing.Size(846, 205); this.txtEncrypted.TabIndex = 0; this.txtEncrypted.TextChanged += new System.EventHandler(this.textBox1_TextChanged); // // txtDecrypted // this.txtDecrypted.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDecrypted.Location = new System.Drawing.Point(12, 359); this.txtDecrypted.Multiline = true; this.txtDecrypted.Name = "txtDecrypted"; this.txtDecrypted.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtDecrypted.Size = new System.Drawing.Size(846, 131); this.txtDecrypted.TabIndex = 1; this.txtDecrypted.TextChanged += new System.EventHandler(this.textBox2_TextChanged); // // txtPassword // this.txtPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtPassword.Location = new System.Drawing.Point(126, 270); this.txtPassword.Name = "txtPassword"; this.txtPassword.Size = new System.Drawing.Size(224, 30); this.txtPassword.TabIndex = 2; // // btnDecrypt // this.btnDecrypt.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.btnDecrypt.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnDecrypt.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDecrypt.Location = new System.Drawing.Point(356, 268); this.btnDecrypt.Name = "btnDecrypt"; this.btnDecrypt.Size = new System.Drawing.Size(170, 35); this.btnDecrypt.TabIndex = 3; this.btnDecrypt.Text = "Decrypt"; this.btnDecrypt.UseVisualStyleBackColor = false; this.btnDecrypt.Click += new System.EventHandler(this.btnDecrypt_Click); // // lblEncodedFile // this.lblEncodedFile.AutoSize = true; this.lblEncodedFile.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblEncodedFile.Location = new System.Drawing.Point(12, 9); this.lblEncodedFile.Name = "lblEncodedFile"; this.lblEncodedFile.Size = new System.Drawing.Size(206, 25); this.lblEncodedFile.TabIndex = 4; this.lblEncodedFile.Text = "Base64-Encoded File:"; // // lblDecodedFile // this.lblDecodedFile.AutoSize = true; this.lblDecodedFile.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblDecodedFile.Location = new System.Drawing.Point(12, 320); this.lblDecodedFile.Name = "lblDecodedFile"; this.lblDecodedFile.Size = new System.Drawing.Size(143, 25); this.lblDecodedFile.TabIndex = 5; this.lblDecodedFile.Text = "Decrypted File:"; // // lblPassword // this.lblPassword.AutoSize = true; this.lblPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblPassword.Location = new System.Drawing.Point(12, 273); this.lblPassword.Name = "lblPassword"; this.lblPassword.Size = new System.Drawing.Size(104, 25); this.lblPassword.TabIndex = 6; this.lblPassword.Text = "Password:"; // // btnInformation // this.btnInformation.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.btnInformation.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnInformation.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnInformation.Location = new System.Drawing.Point(711, 9); this.btnInformation.Name = "btnInformation"; this.btnInformation.Size = new System.Drawing.Size(147, 42); this.btnInformation.TabIndex = 7; this.btnInformation.Text = "Information"; this.btnInformation.UseVisualStyleBackColor = false; this.btnInformation.Click += new System.EventHandler(this.btnInformation_Click); // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(873, 502); this.Controls.Add(this.btnInformation); this.Controls.Add(this.lblPassword); this.Controls.Add(this.lblDecodedFile); this.Controls.Add(this.lblEncodedFile); this.Controls.Add(this.btnDecrypt); this.Controls.Add(this.txtPassword); this.Controls.Add(this.txtDecrypted); this.Controls.Add(this.txtEncrypted); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "frmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "File Decryptor"; this.Load += new System.EventHandler(this.frmMain_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtEncrypted; private System.Windows.Forms.TextBox txtDecrypted; private System.Windows.Forms.TextBox txtPassword; private System.Windows.Forms.Button btnDecrypt; private System.Windows.Forms.Label lblEncodedFile; private System.Windows.Forms.Label lblDecodedFile; private System.Windows.Forms.Label lblPassword; private System.Windows.Forms.Button btnInformation; } }