89 lines
2.6 KiB
C#
89 lines
2.6 KiB
C#
|
namespace WindowsFormsEditor
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.panel1 = new System.Windows.Forms.Panel();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.panel1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel1.Controls.Add(this.button1);
|
|||
|
this.panel1.Location = new System.Drawing.Point(132, 67);
|
|||
|
this.panel1.Name = "panel1";
|
|||
|
this.panel1.Size = new System.Drawing.Size(409, 298);
|
|||
|
this.panel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(320, 3);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(86, 23);
|
|||
|
this.button1.TabIndex = 0;
|
|||
|
this.button1.Text = "button1";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(37, 23);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(35, 13);
|
|||
|
this.label1.TabIndex = 1;
|
|||
|
this.label1.Text = "label1";
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(555, 380);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.panel1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.panel1.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Panel panel1;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
}
|
|||
|
}
|
|||
|
|