100 lines
3.8 KiB
C#
100 lines
3.8 KiB
C#
namespace Test_NxVersion
|
|
{
|
|
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.buttonStart = new System.Windows.Forms.Button();
|
|
this.labelNxVersion = new System.Windows.Forms.Label();
|
|
this.labelNxVersion1 = new System.Windows.Forms.Label();
|
|
this.labelCompare = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonStart
|
|
//
|
|
this.buttonStart.Location = new System.Drawing.Point(12, 363);
|
|
this.buttonStart.Name = "buttonStart";
|
|
this.buttonStart.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonStart.TabIndex = 0;
|
|
this.buttonStart.Text = "Start";
|
|
this.buttonStart.UseVisualStyleBackColor = true;
|
|
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
|
|
//
|
|
// labelNxVersion
|
|
//
|
|
this.labelNxVersion.AutoSize = true;
|
|
this.labelNxVersion.Location = new System.Drawing.Point(9, 9);
|
|
this.labelNxVersion.Name = "labelNxVersion";
|
|
this.labelNxVersion.Size = new System.Drawing.Size(16, 13);
|
|
this.labelNxVersion.TabIndex = 1;
|
|
this.labelNxVersion.Text = "...";
|
|
//
|
|
// labelNxVersion1
|
|
//
|
|
this.labelNxVersion1.AutoSize = true;
|
|
this.labelNxVersion1.Location = new System.Drawing.Point(226, 9);
|
|
this.labelNxVersion1.Name = "labelNxVersion1";
|
|
this.labelNxVersion1.Size = new System.Drawing.Size(16, 13);
|
|
this.labelNxVersion1.TabIndex = 2;
|
|
this.labelNxVersion1.Text = "...";
|
|
//
|
|
// labelCompare
|
|
//
|
|
this.labelCompare.AutoSize = true;
|
|
this.labelCompare.Location = new System.Drawing.Point(12, 312);
|
|
this.labelCompare.Name = "labelCompare";
|
|
this.labelCompare.Size = new System.Drawing.Size(16, 13);
|
|
this.labelCompare.TabIndex = 3;
|
|
this.labelCompare.Text = "...";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(427, 398);
|
|
this.Controls.Add(this.labelCompare);
|
|
this.Controls.Add(this.labelNxVersion1);
|
|
this.Controls.Add(this.labelNxVersion);
|
|
this.Controls.Add(this.buttonStart);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonStart;
|
|
private System.Windows.Forms.Label labelNxVersion;
|
|
private System.Windows.Forms.Label labelNxVersion1;
|
|
private System.Windows.Forms.Label labelCompare;
|
|
}
|
|
}
|
|
|