75 lines
2.7 KiB
C#
75 lines
2.7 KiB
C#
namespace Test_StartStopExtProgram
|
|
{
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.buttonStartStop = new System.Windows.Forms.Button();
|
|
this.labelDllInfo = new System.Windows.Forms.Label();
|
|
this.labelStatus = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonStartStop
|
|
//
|
|
resources.ApplyResources(this.buttonStartStop, "buttonStartStop");
|
|
this.buttonStartStop.Name = "buttonStartStop";
|
|
this.buttonStartStop.UseVisualStyleBackColor = true;
|
|
this.buttonStartStop.Click += new System.EventHandler(this.buttonStartStop_Click);
|
|
//
|
|
// labelDllInfo
|
|
//
|
|
resources.ApplyResources(this.labelDllInfo, "labelDllInfo");
|
|
this.labelDllInfo.Name = "labelDllInfo";
|
|
//
|
|
// labelStatus
|
|
//
|
|
resources.ApplyResources(this.labelStatus, "labelStatus");
|
|
this.labelStatus.Name = "labelStatus";
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.labelStatus);
|
|
this.Controls.Add(this.labelDllInfo);
|
|
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 labelDllInfo;
|
|
private System.Windows.Forms.Label labelStatus;
|
|
}
|
|
}
|
|
|