first commit
This commit is contained in:
143
GoldenEye/Installer/Installer.Designer.cs
generated
Normal file
143
GoldenEye/Installer/Installer.Designer.cs
generated
Normal file
@@ -0,0 +1,143 @@
|
||||
namespace Installer
|
||||
{
|
||||
partial class Installer
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Installer));
|
||||
this.btnOK = new System.Windows.Forms.Button();
|
||||
this.txtbFolder = new System.Windows.Forms.TextBox();
|
||||
this.fbd = new System.Windows.Forms.FolderBrowserDialog();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.btnBrowse = new System.Windows.Forms.Button();
|
||||
this.lbox = new System.Windows.Forms.ListBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// btnOK
|
||||
//
|
||||
this.btnOK.Location = new System.Drawing.Point(461, 176);
|
||||
this.btnOK.Name = "btnOK";
|
||||
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnOK.TabIndex = 0;
|
||||
this.btnOK.Text = "Install";
|
||||
this.btnOK.UseVisualStyleBackColor = true;
|
||||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||||
//
|
||||
// txtbFolder
|
||||
//
|
||||
this.txtbFolder.Location = new System.Drawing.Point(55, 113);
|
||||
this.txtbFolder.Name = "txtbFolder";
|
||||
this.txtbFolder.ReadOnly = true;
|
||||
this.txtbFolder.Size = new System.Drawing.Size(400, 20);
|
||||
this.txtbFolder.TabIndex = 1;
|
||||
this.txtbFolder.Text = "<PATH>";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(52, 97);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(86, 13);
|
||||
this.label1.TabIndex = 2;
|
||||
this.label1.Text = "Installation folder";
|
||||
//
|
||||
// btnBrowse
|
||||
//
|
||||
this.btnBrowse.Location = new System.Drawing.Point(461, 111);
|
||||
this.btnBrowse.Name = "btnBrowse";
|
||||
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnBrowse.TabIndex = 3;
|
||||
this.btnBrowse.Text = "Browse";
|
||||
this.btnBrowse.UseVisualStyleBackColor = true;
|
||||
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
|
||||
//
|
||||
// lbox
|
||||
//
|
||||
this.lbox.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.lbox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.lbox.FormattingEnabled = true;
|
||||
this.lbox.Items.AddRange(new object[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"13",
|
||||
"14",
|
||||
"15",
|
||||
"16",
|
||||
"17",
|
||||
"18",
|
||||
"19",
|
||||
"20",
|
||||
"21",
|
||||
"22",
|
||||
"23"});
|
||||
this.lbox.Location = new System.Drawing.Point(55, 218);
|
||||
this.lbox.Name = "lbox";
|
||||
this.lbox.SelectionMode = System.Windows.Forms.SelectionMode.None;
|
||||
this.lbox.Size = new System.Drawing.Size(552, 260);
|
||||
this.lbox.TabIndex = 4;
|
||||
this.lbox.Visible = false;
|
||||
//
|
||||
// Installer
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(588, 297);
|
||||
this.Controls.Add(this.lbox);
|
||||
this.Controls.Add(this.btnBrowse);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.txtbFolder);
|
||||
this.Controls.Add(this.btnOK);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Name = "Installer";
|
||||
this.Text = "Vrijgave Systemen";
|
||||
this.Load += new System.EventHandler(this.Installer_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button btnOK;
|
||||
private System.Windows.Forms.TextBox txtbFolder;
|
||||
private System.Windows.Forms.FolderBrowserDialog fbd;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Button btnBrowse;
|
||||
private System.Windows.Forms.ListBox lbox;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user