130 lines
5.5 KiB
C#
130 lines
5.5 KiB
C#
namespace 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.buttonCancel = new System.Windows.Forms.Button();
|
|
this.groupBoxBaseDir = new System.Windows.Forms.GroupBox();
|
|
this.textBoxBaseDir = new System.Windows.Forms.TextBox();
|
|
this.groupBoxVerInfo = new System.Windows.Forms.GroupBox();
|
|
this.labelVerInfo = new System.Windows.Forms.Label();
|
|
this.groupBoxBaseDir.SuspendLayout();
|
|
this.groupBoxVerInfo.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonStart
|
|
//
|
|
this.buttonStart.Location = new System.Drawing.Point(12, 484);
|
|
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);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(505, 484);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 1;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// groupBoxBaseDir
|
|
//
|
|
this.groupBoxBaseDir.Controls.Add(this.textBoxBaseDir);
|
|
this.groupBoxBaseDir.Location = new System.Drawing.Point(12, 13);
|
|
this.groupBoxBaseDir.Name = "groupBoxBaseDir";
|
|
this.groupBoxBaseDir.Size = new System.Drawing.Size(568, 49);
|
|
this.groupBoxBaseDir.TabIndex = 2;
|
|
this.groupBoxBaseDir.TabStop = false;
|
|
this.groupBoxBaseDir.Text = "UGII_BASE_DIR";
|
|
//
|
|
// textBoxBaseDir
|
|
//
|
|
this.textBoxBaseDir.Location = new System.Drawing.Point(7, 20);
|
|
this.textBoxBaseDir.Name = "textBoxBaseDir";
|
|
this.textBoxBaseDir.Size = new System.Drawing.Size(555, 20);
|
|
this.textBoxBaseDir.TabIndex = 0;
|
|
this.textBoxBaseDir.Text = "C:\\CAD\\NX";
|
|
this.textBoxBaseDir.TextChanged += new System.EventHandler(this.textBoxBaseDir_TextChanged);
|
|
//
|
|
// groupBoxVerInfo
|
|
//
|
|
this.groupBoxVerInfo.Controls.Add(this.labelVerInfo);
|
|
this.groupBoxVerInfo.Location = new System.Drawing.Point(12, 69);
|
|
this.groupBoxVerInfo.Name = "groupBoxVerInfo";
|
|
this.groupBoxVerInfo.Size = new System.Drawing.Size(568, 409);
|
|
this.groupBoxVerInfo.TabIndex = 3;
|
|
this.groupBoxVerInfo.TabStop = false;
|
|
this.groupBoxVerInfo.Text = "Versionsinformationen";
|
|
//
|
|
// labelVerInfo
|
|
//
|
|
this.labelVerInfo.AutoSize = true;
|
|
this.labelVerInfo.Location = new System.Drawing.Point(7, 20);
|
|
this.labelVerInfo.Name = "labelVerInfo";
|
|
this.labelVerInfo.Size = new System.Drawing.Size(16, 13);
|
|
this.labelVerInfo.TabIndex = 0;
|
|
this.labelVerInfo.Text = "...";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(592, 519);
|
|
this.Controls.Add(this.groupBoxVerInfo);
|
|
this.Controls.Add(this.groupBoxBaseDir);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonStart);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.groupBoxBaseDir.ResumeLayout(false);
|
|
this.groupBoxBaseDir.PerformLayout();
|
|
this.groupBoxVerInfo.ResumeLayout(false);
|
|
this.groupBoxVerInfo.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonStart;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.GroupBox groupBoxBaseDir;
|
|
private System.Windows.Forms.TextBox textBoxBaseDir;
|
|
private System.Windows.Forms.GroupBox groupBoxVerInfo;
|
|
private System.Windows.Forms.Label labelVerInfo;
|
|
}
|
|
}
|
|
|