86 lines
3.3 KiB
C#
86 lines
3.3 KiB
C#
namespace Vererbung
|
|
{
|
|
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.buttonProtected = new System.Windows.Forms.Button();
|
|
this.buttonPrivate = new System.Windows.Forms.Button();
|
|
this.buttonStart = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonProtected
|
|
//
|
|
this.buttonProtected.Location = new System.Drawing.Point(13, 415);
|
|
this.buttonProtected.Name = "buttonProtected";
|
|
this.buttonProtected.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonProtected.TabIndex = 0;
|
|
this.buttonProtected.Text = "Protected";
|
|
this.buttonProtected.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonPrivate
|
|
//
|
|
this.buttonPrivate.Location = new System.Drawing.Point(713, 393);
|
|
this.buttonPrivate.Name = "buttonPrivate";
|
|
this.buttonPrivate.Size = new System.Drawing.Size(75, 44);
|
|
this.buttonPrivate.TabIndex = 1;
|
|
this.buttonPrivate.Text = "Private\r\nCancel\r\n";
|
|
this.buttonPrivate.UseVisualStyleBackColor = true;
|
|
this.buttonPrivate.Click += new System.EventHandler(this.buttonPrivate_Click);
|
|
//
|
|
// buttonStart
|
|
//
|
|
this.buttonStart.Location = new System.Drawing.Point(713, 12);
|
|
this.buttonStart.Name = "buttonStart";
|
|
this.buttonStart.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonStart.TabIndex = 2;
|
|
this.buttonStart.Text = "Start";
|
|
this.buttonStart.UseVisualStyleBackColor = true;
|
|
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.buttonStart);
|
|
this.Controls.Add(this.buttonPrivate);
|
|
this.Controls.Add(this.buttonProtected);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Button buttonPrivate;
|
|
protected System.Windows.Forms.Button buttonProtected;
|
|
private System.Windows.Forms.Button buttonStart;
|
|
}
|
|
}
|
|
|