76 lines
2.9 KiB
C#
76 lines
2.9 KiB
C#
namespace Test_ProgrammInfo
|
|
{
|
|
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.buttonShowInfo = new System.Windows.Forms.Button();
|
|
this.labelInfo = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonShowInfo
|
|
//
|
|
this.buttonShowInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonShowInfo.Location = new System.Drawing.Point(13, 238);
|
|
this.buttonShowInfo.Name = "buttonShowInfo";
|
|
this.buttonShowInfo.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonShowInfo.TabIndex = 0;
|
|
this.buttonShowInfo.Text = "Show Info";
|
|
this.buttonShowInfo.UseVisualStyleBackColor = true;
|
|
this.buttonShowInfo.Click += new System.EventHandler(this.buttonShowInfo_Click);
|
|
//
|
|
// labelInfo
|
|
//
|
|
this.labelInfo.AutoSize = true;
|
|
this.labelInfo.Location = new System.Drawing.Point(13, 13);
|
|
this.labelInfo.Name = "labelInfo";
|
|
this.labelInfo.Size = new System.Drawing.Size(148, 104);
|
|
this.labelInfo.TabIndex = 1;
|
|
this.labelInfo.Text = "Interne Programm Information:\r\n\r\n\r\n\r\n\r\n\r\n\r\nExterne Programm Information";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(450, 273);
|
|
this.Controls.Add(this.labelInfo);
|
|
this.Controls.Add(this.buttonShowInfo);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonShowInfo;
|
|
private System.Windows.Forms.Label labelInfo;
|
|
}
|
|
}
|
|
|