161 lines
7.7 KiB
C#
161 lines
7.7 KiB
C#
|
|
namespace ShowInstalledNXversion
|
|
{
|
|
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.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
|
|
this.labelInstallationFolder = new System.Windows.Forms.Label();
|
|
this.groupBoxSelect = new System.Windows.Forms.GroupBox();
|
|
this.comboBoxInstalledNX = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.buttonInstallationFolder = new System.Windows.Forms.Button();
|
|
this.textBoxInstallationFolder = new System.Windows.Forms.TextBox();
|
|
this.groupBoxResult = new System.Windows.Forms.GroupBox();
|
|
this.textBoxInstalledNxVersion = new System.Windows.Forms.TextBox();
|
|
this.labelInstalledNxVersion = new System.Windows.Forms.Label();
|
|
this.buttonExportVersion = new System.Windows.Forms.Button();
|
|
this.buttonAbout = new System.Windows.Forms.Button();
|
|
this.groupBoxSelect.SuspendLayout();
|
|
this.groupBoxResult.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelInstallationFolder
|
|
//
|
|
resources.ApplyResources(this.labelInstallationFolder, "labelInstallationFolder");
|
|
this.labelInstallationFolder.Name = "labelInstallationFolder";
|
|
//
|
|
// groupBoxSelect
|
|
//
|
|
this.groupBoxSelect.Controls.Add(this.comboBoxInstalledNX);
|
|
this.groupBoxSelect.Controls.Add(this.label1);
|
|
this.groupBoxSelect.Controls.Add(this.buttonInstallationFolder);
|
|
this.groupBoxSelect.Controls.Add(this.textBoxInstallationFolder);
|
|
this.groupBoxSelect.Controls.Add(this.labelInstallationFolder);
|
|
resources.ApplyResources(this.groupBoxSelect, "groupBoxSelect");
|
|
this.groupBoxSelect.Name = "groupBoxSelect";
|
|
this.groupBoxSelect.TabStop = false;
|
|
//
|
|
// comboBoxInstalledNX
|
|
//
|
|
this.comboBoxInstalledNX.FormattingEnabled = true;
|
|
resources.ApplyResources(this.comboBoxInstalledNX, "comboBoxInstalledNX");
|
|
this.comboBoxInstalledNX.Name = "comboBoxInstalledNX";
|
|
this.comboBoxInstalledNX.SelectedIndexChanged += new System.EventHandler(this.comboBoxInstalledNX_SelectedIndexChanged);
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// buttonInstallationFolder
|
|
//
|
|
resources.ApplyResources(this.buttonInstallationFolder, "buttonInstallationFolder");
|
|
this.buttonInstallationFolder.Name = "buttonInstallationFolder";
|
|
this.buttonInstallationFolder.UseVisualStyleBackColor = true;
|
|
this.buttonInstallationFolder.Click += new System.EventHandler(this.buttonInstallationFolder_Click);
|
|
//
|
|
// textBoxInstallationFolder
|
|
//
|
|
resources.ApplyResources(this.textBoxInstallationFolder, "textBoxInstallationFolder");
|
|
this.textBoxInstallationFolder.Name = "textBoxInstallationFolder";
|
|
this.textBoxInstallationFolder.TextChanged += new System.EventHandler(this.textBoxInstallationFolder_TextChanged);
|
|
this.textBoxInstallationFolder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxInstallationFolder_KeyDown);
|
|
//
|
|
// groupBoxResult
|
|
//
|
|
this.groupBoxResult.Controls.Add(this.textBoxInstalledNxVersion);
|
|
this.groupBoxResult.Controls.Add(this.labelInstalledNxVersion);
|
|
resources.ApplyResources(this.groupBoxResult, "groupBoxResult");
|
|
this.groupBoxResult.Name = "groupBoxResult";
|
|
this.groupBoxResult.TabStop = false;
|
|
//
|
|
// textBoxInstalledNxVersion
|
|
//
|
|
resources.ApplyResources(this.textBoxInstalledNxVersion, "textBoxInstalledNxVersion");
|
|
this.textBoxInstalledNxVersion.Name = "textBoxInstalledNxVersion";
|
|
this.textBoxInstalledNxVersion.ReadOnly = true;
|
|
//
|
|
// labelInstalledNxVersion
|
|
//
|
|
resources.ApplyResources(this.labelInstalledNxVersion, "labelInstalledNxVersion");
|
|
this.labelInstalledNxVersion.Name = "labelInstalledNxVersion";
|
|
//
|
|
// buttonExportVersion
|
|
//
|
|
resources.ApplyResources(this.buttonExportVersion, "buttonExportVersion");
|
|
this.buttonExportVersion.Name = "buttonExportVersion";
|
|
this.buttonExportVersion.UseVisualStyleBackColor = true;
|
|
this.buttonExportVersion.Click += new System.EventHandler(this.buttonExportVersion_Click);
|
|
//
|
|
// buttonAbout
|
|
//
|
|
resources.ApplyResources(this.buttonAbout, "buttonAbout");
|
|
this.buttonAbout.Name = "buttonAbout";
|
|
this.buttonAbout.UseVisualStyleBackColor = true;
|
|
this.buttonAbout.Click += new System.EventHandler(this.buttonAbout_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonAbout);
|
|
this.Controls.Add(this.buttonExportVersion);
|
|
this.Controls.Add(this.groupBoxResult);
|
|
this.Controls.Add(this.groupBoxSelect);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.Name = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.groupBoxSelect.ResumeLayout(false);
|
|
this.groupBoxSelect.PerformLayout();
|
|
this.groupBoxResult.ResumeLayout(false);
|
|
this.groupBoxResult.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
|
|
private System.Windows.Forms.Label labelInstallationFolder;
|
|
private System.Windows.Forms.GroupBox groupBoxSelect;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button buttonInstallationFolder;
|
|
private System.Windows.Forms.TextBox textBoxInstallationFolder;
|
|
private System.Windows.Forms.GroupBox groupBoxResult;
|
|
private System.Windows.Forms.TextBox textBoxInstalledNxVersion;
|
|
private System.Windows.Forms.Label labelInstalledNxVersion;
|
|
private System.Windows.Forms.Button buttonExportVersion;
|
|
private System.Windows.Forms.ComboBox comboBoxInstalledNX;
|
|
private System.Windows.Forms.Button buttonAbout;
|
|
}
|
|
}
|
|
|