75 lines
2.7 KiB
C#
75 lines
2.7 KiB
C#
namespace BaseFormLibrary
|
|
{
|
|
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.btnProtected = new System.Windows.Forms.Button();
|
|
this.btnPrivate = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnProtected
|
|
//
|
|
this.btnProtected.Location = new System.Drawing.Point(13, 415);
|
|
this.btnProtected.Name = "btnProtected";
|
|
this.btnProtected.Size = new System.Drawing.Size(168, 23);
|
|
this.btnProtected.TabIndex = 0;
|
|
this.btnProtected.Text = "Say Hello";
|
|
this.btnProtected.UseVisualStyleBackColor = true;
|
|
this.btnProtected.Click += new System.EventHandler(this.btnProtected_Click);
|
|
//
|
|
// btnPrivate
|
|
//
|
|
this.btnPrivate.Location = new System.Drawing.Point(615, 415);
|
|
this.btnPrivate.Name = "btnPrivate";
|
|
this.btnPrivate.Size = new System.Drawing.Size(173, 23);
|
|
this.btnPrivate.TabIndex = 1;
|
|
this.btnPrivate.Text = "Say Goodbye";
|
|
this.btnPrivate.UseVisualStyleBackColor = true;
|
|
this.btnPrivate.Click += new System.EventHandler(this.btnPrivate_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.btnPrivate);
|
|
this.Controls.Add(this.btnProtected);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnPrivate;
|
|
protected System.Windows.Forms.Button btnProtected;
|
|
}
|
|
}
|
|
|