119 lines
5.5 KiB
C#
119 lines
5.5 KiB
C#
namespace SanSystem
|
|
{
|
|
partial class FrmPrefixSuffix
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txt_prefix = new System.Windows.Forms.TextBox();
|
|
this.txt_suffix = new System.Windows.Forms.TextBox();
|
|
this.btn_safe = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(18, 14);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(61, 25);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Prefix";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label2.Location = new System.Drawing.Point(18, 97);
|
|
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(61, 25);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Suffix";
|
|
//
|
|
// txt_prefix
|
|
//
|
|
this.txt_prefix.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_prefix.Location = new System.Drawing.Point(171, 9);
|
|
this.txt_prefix.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.txt_prefix.Name = "txt_prefix";
|
|
this.txt_prefix.Size = new System.Drawing.Size(456, 30);
|
|
this.txt_prefix.TabIndex = 2;
|
|
//
|
|
// txt_suffix
|
|
//
|
|
this.txt_suffix.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_suffix.Location = new System.Drawing.Point(171, 95);
|
|
this.txt_suffix.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.txt_suffix.Name = "txt_suffix";
|
|
this.txt_suffix.Size = new System.Drawing.Size(456, 30);
|
|
this.txt_suffix.TabIndex = 3;
|
|
//
|
|
// btn_safe
|
|
//
|
|
this.btn_safe.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btn_safe.Location = new System.Drawing.Point(26, 180);
|
|
this.btn_safe.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.btn_safe.Name = "btn_safe";
|
|
this.btn_safe.Size = new System.Drawing.Size(603, 162);
|
|
this.btn_safe.TabIndex = 4;
|
|
this.btn_safe.Text = "Speichern";
|
|
this.btn_safe.UseVisualStyleBackColor = true;
|
|
this.btn_safe.Click += new System.EventHandler(this.Btn_safe_Click);
|
|
//
|
|
// FrmPrefixSuffix
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(692, 380);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.btn_safe);
|
|
this.Controls.Add(this.txt_suffix);
|
|
this.Controls.Add(this.txt_prefix);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.Name = "FrmPrefixSuffix";
|
|
this.Text = "Prefix Suffix Bearbeiten";
|
|
this.Load += new System.EventHandler(this.FrmPrefixSuffix_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txt_prefix;
|
|
private System.Windows.Forms.TextBox txt_suffix;
|
|
private System.Windows.Forms.Button btn_safe;
|
|
}
|
|
} |