76 lines
2.6 KiB
C#
76 lines
2.6 KiB
C#
namespace OwnForms
|
|
{
|
|
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.labelMyForm = new System.Windows.Forms.Label();
|
|
this.buttonOk = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelMyForm
|
|
//
|
|
this.labelMyForm.AutoSize = true;
|
|
this.labelMyForm.Location = new System.Drawing.Point(13, 13);
|
|
this.labelMyForm.Name = "labelMyForm";
|
|
this.labelMyForm.Size = new System.Drawing.Size(16, 13);
|
|
this.labelMyForm.TabIndex = 0;
|
|
this.labelMyForm.Text = "...";
|
|
//
|
|
// buttonOk
|
|
//
|
|
this.buttonOk.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.buttonOk.Location = new System.Drawing.Point(77, 93);
|
|
this.buttonOk.Name = "buttonOk";
|
|
this.buttonOk.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonOk.TabIndex = 1;
|
|
this.buttonOk.Text = "OK";
|
|
this.buttonOk.UseVisualStyleBackColor = true;
|
|
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
|
|
//
|
|
// MyForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(228, 128);
|
|
this.Controls.Add(this.buttonOk);
|
|
this.Controls.Add(this.labelMyForm);
|
|
this.Name = "MyForm";
|
|
this.Text = "MyForm";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label labelMyForm;
|
|
private System.Windows.Forms.Button buttonOk;
|
|
}
|
|
}
|
|
|