73 lines
2.8 KiB
C#
73 lines
2.8 KiB
C#
namespace Eugen.ESystem
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, 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.buttonStartStop = new System.Windows.Forms.Button();
|
|
this.labelStatus = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonStartStop
|
|
//
|
|
this.buttonStartStop.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.buttonStartStop.Location = new System.Drawing.Point(135, 121);
|
|
this.buttonStartStop.Name = "buttonStartStop";
|
|
this.buttonStartStop.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonStartStop.TabIndex = 2;
|
|
this.buttonStartStop.Text = "Start / Stop";
|
|
this.buttonStartStop.UseVisualStyleBackColor = true;
|
|
this.buttonStartStop.Click += new System.EventHandler(this.buttonStartStop_Click);
|
|
//
|
|
// labelStatus
|
|
//
|
|
this.labelStatus.AutoSize = true;
|
|
this.labelStatus.Location = new System.Drawing.Point(12, 54);
|
|
this.labelStatus.Name = "labelStatus";
|
|
this.labelStatus.Size = new System.Drawing.Size(326, 13);
|
|
this.labelStatus.TabIndex = 0;
|
|
this.labelStatus.Text = "Start / Stop drücken um das Programm zu Starten oder zu Beenden";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(345, 156);
|
|
this.Controls.Add(this.labelStatus);
|
|
this.Controls.Add(this.buttonStartStop);
|
|
this.Name = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonStartStop;
|
|
private System.Windows.Forms.Label labelStatus;
|
|
}
|
|
} |