patbef-ServiceInside/PasswortEncryptor/MainForm.Designer.cs

157 lines
7.3 KiB
C#
Raw Normal View History

2024-01-29 16:26:54 +01:00
namespace PasswortEncryptor
{
partial class MainForm
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.btnEncrypt = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.txtInput = new System.Windows.Forms.RichTextBox();
this.txtOutput = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
this.cbxTemplate = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnEncrypt
//
this.btnEncrypt.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnEncrypt.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnEncrypt.Location = new System.Drawing.Point(447, 394);
this.btnEncrypt.Name = "btnEncrypt";
this.btnEncrypt.Size = new System.Drawing.Size(109, 34);
this.btnEncrypt.TabIndex = 0;
this.btnEncrypt.Text = "Verschlüsseln";
this.btnEncrypt.UseVisualStyleBackColor = true;
this.btnEncrypt.Click += new System.EventHandler(this.btnEncrypt_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(221, 25);
this.label1.TabIndex = 1;
this.label1.Text = "Text zum Verschlüsseln";
//
// txtInput
//
this.txtInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtInput.Location = new System.Drawing.Point(17, 48);
this.txtInput.Name = "txtInput";
this.txtInput.Size = new System.Drawing.Size(539, 108);
this.txtInput.TabIndex = 2;
this.txtInput.Text = "";
//
// txtOutput
//
this.txtOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtOutput.Location = new System.Drawing.Point(17, 243);
this.txtOutput.Name = "txtOutput";
this.txtOutput.Size = new System.Drawing.Size(539, 138);
this.txtOutput.TabIndex = 4;
this.txtOutput.Text = "";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(12, 204);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(190, 25);
this.label2.TabIndex = 3;
this.label2.Text = "Verschlüsselter Text";
//
// cbxTemplate
//
this.cbxTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cbxTemplate.BackColor = System.Drawing.Color.White;
this.cbxTemplate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxTemplate.FormattingEnabled = true;
this.cbxTemplate.Items.AddRange(new object[] {
"",
"MySQL"});
this.cbxTemplate.Location = new System.Drawing.Point(395, 162);
this.cbxTemplate.Name = "cbxTemplate";
this.cbxTemplate.Size = new System.Drawing.Size(161, 21);
this.cbxTemplate.TabIndex = 5;
this.cbxTemplate.SelectedIndexChanged += new System.EventHandler(this.cbxTemplate_SelectedIndexChanged);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(346, 165);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(43, 13);
this.label3.TabIndex = 6;
this.label3.Text = "Vorlage";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(568, 440);
this.Controls.Add(this.label3);
this.Controls.Add(this.cbxTemplate);
this.Controls.Add(this.txtOutput);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtInput);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnEncrypt);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Passwort Encryptor";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnEncrypt;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.RichTextBox txtInput;
private System.Windows.Forms.RichTextBox txtOutput;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cbxTemplate;
private System.Windows.Forms.Label label3;
}
}