namespace WebsitePanel.PasswordEncoder { partial class MainForm { /// /// 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.label1 = new System.Windows.Forms.Label(); this.CryptoKey = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.Value = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.Result = new System.Windows.Forms.TextBox(); this.EncryptButton = new System.Windows.Forms.Button(); this.DecryptButton = new System.Windows.Forms.Button(); this.Sha1Button = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(222, 13); this.label1.TabIndex = 0; this.label1.Text = "Crypto key from Enterprise Server web.config:"; // // CryptoKey // this.CryptoKey.Location = new System.Drawing.Point(12, 25); this.CryptoKey.Name = "CryptoKey"; this.CryptoKey.Size = new System.Drawing.Size(294, 20); this.CryptoKey.TabIndex = 1; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 61); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(137, 13); this.label2.TabIndex = 2; this.label2.Text = "Value to encrypt or decrypt:"; // // Value // this.Value.Location = new System.Drawing.Point(12, 77); this.Value.Name = "Value"; this.Value.Size = new System.Drawing.Size(294, 20); this.Value.TabIndex = 3; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 164); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 13); this.label3.TabIndex = 4; this.label3.Text = "Result:"; // // Result // this.Result.Location = new System.Drawing.Point(12, 180); this.Result.Name = "Result"; this.Result.Size = new System.Drawing.Size(294, 20); this.Result.TabIndex = 5; // // EncryptButton // this.EncryptButton.Location = new System.Drawing.Point(12, 103); this.EncryptButton.Name = "EncryptButton"; this.EncryptButton.Size = new System.Drawing.Size(75, 23); this.EncryptButton.TabIndex = 6; this.EncryptButton.Text = "Encrypt"; this.EncryptButton.UseVisualStyleBackColor = true; this.EncryptButton.Click += new System.EventHandler(this.EncryptButton_Click); // // DecryptButton // this.DecryptButton.Location = new System.Drawing.Point(93, 103); this.DecryptButton.Name = "DecryptButton"; this.DecryptButton.Size = new System.Drawing.Size(75, 23); this.DecryptButton.TabIndex = 7; this.DecryptButton.Text = "Decrypt"; this.DecryptButton.UseVisualStyleBackColor = true; this.DecryptButton.Click += new System.EventHandler(this.DecryptButton_Click); // // Sha1Button // this.Sha1Button.Location = new System.Drawing.Point(174, 103); this.Sha1Button.Name = "Sha1Button"; this.Sha1Button.Size = new System.Drawing.Size(75, 23); this.Sha1Button.TabIndex = 8; this.Sha1Button.Text = "SHA1"; this.Sha1Button.UseVisualStyleBackColor = true; this.Sha1Button.Click += new System.EventHandler(this.Sha1Button_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(322, 213); this.Controls.Add(this.Sha1Button); this.Controls.Add(this.DecryptButton); this.Controls.Add(this.EncryptButton); this.Controls.Add(this.Result); this.Controls.Add(this.label3); this.Controls.Add(this.Value); this.Controls.Add(this.label2); this.Controls.Add(this.CryptoKey); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "MainForm"; this.Text = "WebsitePanel Password Encoder"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox CryptoKey; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox Value; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox Result; private System.Windows.Forms.Button EncryptButton; private System.Windows.Forms.Button DecryptButton; private System.Windows.Forms.Button Sha1Button; } }