68 lines
2.4 KiB
C#
68 lines
2.4 KiB
C#
namespace Vererbung
|
|
{
|
|
partial class MyForm
|
|
{
|
|
/// <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.buttonNeu = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonProtected
|
|
//
|
|
this.buttonProtected.Location = new System.Drawing.Point(12, 12);
|
|
this.buttonProtected.Size = new System.Drawing.Size(269, 102);
|
|
this.buttonProtected.Click += new System.EventHandler(this.buttonProtected_Click);
|
|
//
|
|
// buttonNeu
|
|
//
|
|
this.buttonNeu.Location = new System.Drawing.Point(396, 90);
|
|
this.buttonNeu.Name = "buttonNeu";
|
|
this.buttonNeu.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonNeu.TabIndex = 3;
|
|
this.buttonNeu.Text = "Neu";
|
|
this.buttonNeu.UseVisualStyleBackColor = true;
|
|
this.buttonNeu.Click += new System.EventHandler(this.buttonNeu_Click);
|
|
//
|
|
// MyForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.buttonNeu);
|
|
this.Name = "MyForm";
|
|
this.Text = "MyForm";
|
|
this.Controls.SetChildIndex(this.buttonProtected, 0);
|
|
this.Controls.SetChildIndex(this.buttonNeu, 0);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonNeu;
|
|
}
|
|
}
|