116 lines
4.7 KiB
C#
116 lines
4.7 KiB
C#
namespace Eugen.NX
|
|
{
|
|
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.buttonStart = new System.Windows.Forms.Button();
|
|
this.labelEnvironment = new System.Windows.Forms.Label();
|
|
this.labelReplace = new System.Windows.Forms.Label();
|
|
this.groupBoxProgramInfo = new System.Windows.Forms.GroupBox();
|
|
this.labelProgramInfo = new System.Windows.Forms.Label();
|
|
this.groupBoxDLLInfo = new System.Windows.Forms.GroupBox();
|
|
this.labelDLLInfo = new System.Windows.Forms.Label();
|
|
this.groupBoxProgramInfo.SuspendLayout();
|
|
this.groupBoxDLLInfo.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonStart
|
|
//
|
|
resources.ApplyResources(this.buttonStart, "buttonStart");
|
|
this.buttonStart.Name = "buttonStart";
|
|
this.buttonStart.UseVisualStyleBackColor = true;
|
|
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
|
|
//
|
|
// labelEnvironment
|
|
//
|
|
resources.ApplyResources(this.labelEnvironment, "labelEnvironment");
|
|
this.labelEnvironment.Name = "labelEnvironment";
|
|
//
|
|
// labelReplace
|
|
//
|
|
resources.ApplyResources(this.labelReplace, "labelReplace");
|
|
this.labelReplace.Name = "labelReplace";
|
|
//
|
|
// groupBoxProgramInfo
|
|
//
|
|
this.groupBoxProgramInfo.Controls.Add(this.labelProgramInfo);
|
|
resources.ApplyResources(this.groupBoxProgramInfo, "groupBoxProgramInfo");
|
|
this.groupBoxProgramInfo.Name = "groupBoxProgramInfo";
|
|
this.groupBoxProgramInfo.TabStop = false;
|
|
//
|
|
// labelProgramInfo
|
|
//
|
|
resources.ApplyResources(this.labelProgramInfo, "labelProgramInfo");
|
|
this.labelProgramInfo.Name = "labelProgramInfo";
|
|
//
|
|
// groupBoxDLLInfo
|
|
//
|
|
this.groupBoxDLLInfo.Controls.Add(this.labelDLLInfo);
|
|
resources.ApplyResources(this.groupBoxDLLInfo, "groupBoxDLLInfo");
|
|
this.groupBoxDLLInfo.Name = "groupBoxDLLInfo";
|
|
this.groupBoxDLLInfo.TabStop = false;
|
|
//
|
|
// labelDLLInfo
|
|
//
|
|
resources.ApplyResources(this.labelDLLInfo, "labelDLLInfo");
|
|
this.labelDLLInfo.Name = "labelDLLInfo";
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBoxProgramInfo);
|
|
this.Controls.Add(this.groupBoxDLLInfo);
|
|
this.Controls.Add(this.labelReplace);
|
|
this.Controls.Add(this.labelEnvironment);
|
|
this.Controls.Add(this.buttonStart);
|
|
this.Name = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.groupBoxProgramInfo.ResumeLayout(false);
|
|
this.groupBoxProgramInfo.PerformLayout();
|
|
this.groupBoxDLLInfo.ResumeLayout(false);
|
|
this.groupBoxDLLInfo.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonStart;
|
|
private System.Windows.Forms.Label labelEnvironment;
|
|
private System.Windows.Forms.Label labelReplace;
|
|
private System.Windows.Forms.GroupBox groupBoxProgramInfo;
|
|
private System.Windows.Forms.Label labelProgramInfo;
|
|
private System.Windows.Forms.GroupBox groupBoxDLLInfo;
|
|
private System.Windows.Forms.Label labelDLLInfo;
|
|
}
|
|
}
|
|
|