namespace FilterEncrypter { partial class Main { /// /// 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.Config = new System.Windows.Forms.TextBox(); this.Encrypt = new System.Windows.Forms.Button(); this.Decrypt = new System.Windows.Forms.Button(); this.ExEHashes = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // Config // this.Config.Dock = System.Windows.Forms.DockStyle.Top; this.Config.Location = new System.Drawing.Point(0, 0); this.Config.Multiline = true; this.Config.Name = "Config"; this.Config.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.Config.Size = new System.Drawing.Size(784, 388); this.Config.TabIndex = 0; // // Encrypt // this.Encrypt.Location = new System.Drawing.Point(12, 526); this.Encrypt.Name = "Encrypt"; this.Encrypt.Size = new System.Drawing.Size(75, 23); this.Encrypt.TabIndex = 1; this.Encrypt.Text = "Encrypt"; this.Encrypt.UseVisualStyleBackColor = true; this.Encrypt.Click += new System.EventHandler(this.Encrypt_Click); // // Decrypt // this.Decrypt.Location = new System.Drawing.Point(697, 526); this.Decrypt.Name = "Decrypt"; this.Decrypt.Size = new System.Drawing.Size(75, 23); this.Decrypt.TabIndex = 2; this.Decrypt.Text = "Decrypt"; this.Decrypt.UseVisualStyleBackColor = true; this.Decrypt.Click += new System.EventHandler(this.Decrypt_Click); // // ExEHashes // this.ExEHashes.Dock = System.Windows.Forms.DockStyle.Top; this.ExEHashes.Location = new System.Drawing.Point(0, 388); this.ExEHashes.Multiline = true; this.ExEHashes.Name = "ExEHashes"; this.ExEHashes.ReadOnly = true; this.ExEHashes.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.ExEHashes.Size = new System.Drawing.Size(784, 132); this.ExEHashes.TabIndex = 3; // // Main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(784, 561); this.Controls.Add(this.ExEHashes); this.Controls.Add(this.Decrypt); this.Controls.Add(this.Encrypt); this.Controls.Add(this.Config); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "Main"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Shown += new System.EventHandler(this.Main_Shown); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox Config; private System.Windows.Forms.Button Encrypt; private System.Windows.Forms.Button Decrypt; private System.Windows.Forms.TextBox ExEHashes; } }