Subversion Repositories Code-Repo

Rev

Rev 67 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
65 Kevin 1
namespace SWAT_USB_App
2
{
3
    partial class Main_Menu_Form
4
    {
5
        /// <summary>
6
        /// Required designer variable.
7
        /// </summary>
8
        private System.ComponentModel.IContainer components = null;
9
 
10
        /// <summary>
11
        /// Clean up any resources being used.
12
        /// </summary>
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
        protected override void Dispose(bool disposing)
15
        {
16
            if (disposing && (components != null))
17
            {
18
                components.Dispose();
19
            }
20
            base.Dispose(disposing);
21
        }
22
 
23
        #region Windows Form Designer generated code
24
 
25
        /// <summary>
26
        /// Required method for Designer support - do not modify
27
        /// the contents of this method with the code editor.
28
        /// </summary>
29
        private void InitializeComponent()
30
        {
31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Menu_Form));
32
            this.grp_Main_Menu = new System.Windows.Forms.GroupBox();
33
            this.btn_Exit = new System.Windows.Forms.Button();
34
            this.btn_Drivers = new System.Windows.Forms.Button();
35
            this.btn_Software = new System.Windows.Forms.Button();
36
            this.lbl_Main_Menu = new System.Windows.Forms.Label();
37
            this.grp_Main_Menu.SuspendLayout();
38
            this.SuspendLayout();
39
            // 
40
            // grp_Main_Menu
41
            // 
42
            this.grp_Main_Menu.Controls.Add(this.btn_Exit);
43
            this.grp_Main_Menu.Controls.Add(this.btn_Drivers);
44
            this.grp_Main_Menu.Controls.Add(this.btn_Software);
45
            this.grp_Main_Menu.Controls.Add(this.lbl_Main_Menu);
46
            this.grp_Main_Menu.Location = new System.Drawing.Point(12, 12);
47
            this.grp_Main_Menu.Name = "grp_Main_Menu";
48
            this.grp_Main_Menu.Size = new System.Drawing.Size(275, 107);
49
            this.grp_Main_Menu.TabIndex = 2;
50
            this.grp_Main_Menu.TabStop = false;
51
            this.grp_Main_Menu.Text = "Main Menu";
52
            // 
53
            // btn_Exit
54
            // 
55
            this.btn_Exit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
56
            this.btn_Exit.Location = new System.Drawing.Point(185, 17);
57
            this.btn_Exit.Name = "btn_Exit";
58
            this.btn_Exit.Size = new System.Drawing.Size(75, 23);
59
            this.btn_Exit.TabIndex = 5;
60
            this.btn_Exit.Text = "Exit [Esc]";
61
            this.btn_Exit.UseVisualStyleBackColor = true;
62
            this.btn_Exit.Click += new System.EventHandler(this.btn_Main_Exit_Click);
63
            // 
64
            // btn_Drivers
65
            // 
66
            this.btn_Drivers.FlatStyle = System.Windows.Forms.FlatStyle.System;
67
            this.btn_Drivers.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
68
            this.btn_Drivers.Location = new System.Drawing.Point(14, 47);
69
            this.btn_Drivers.Name = "btn_Drivers";
70
            this.btn_Drivers.Size = new System.Drawing.Size(120, 45);
71
            this.btn_Drivers.TabIndex = 3;
72
            this.btn_Drivers.Text = "Install &Drivers\r\n";
73
            this.btn_Drivers.UseVisualStyleBackColor = true;
74
            this.btn_Drivers.Click += new System.EventHandler(this.btn_Main_Drivers_Click);
75
            // 
76
            // btn_Software
77
            // 
78
            this.btn_Software.FlatStyle = System.Windows.Forms.FlatStyle.System;
79
            this.btn_Software.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
80
            this.btn_Software.Location = new System.Drawing.Point(140, 47);
81
            this.btn_Software.Name = "btn_Software";
82
            this.btn_Software.Size = new System.Drawing.Size(120, 45);
83
            this.btn_Software.TabIndex = 4;
84
            this.btn_Software.Text = "Install &Software\r\n";
85
            this.btn_Software.UseVisualStyleBackColor = true;
86
            this.btn_Software.Click += new System.EventHandler(this.btn_Main_Software_Click);
87
            // 
88
            // lbl_Main_Menu
89
            // 
90
            this.lbl_Main_Menu.AutoSize = true;
91
            this.lbl_Main_Menu.Location = new System.Drawing.Point(6, 22);
92
            this.lbl_Main_Menu.Name = "lbl_Main_Menu";
93
            this.lbl_Main_Menu.Size = new System.Drawing.Size(164, 13);
94
            this.lbl_Main_Menu.TabIndex = 0;
95
            this.lbl_Main_Menu.Text = "To begin, please select an option";
96
            // 
70 Kevin 97
            // Main_Menu_Form
65 Kevin 98
            // 
99
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101
            this.CancelButton = this.btn_Exit;
102
            this.ClientSize = new System.Drawing.Size(298, 131);
103
            this.Controls.Add(this.grp_Main_Menu);
104
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
105
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
106
            this.MaximizeBox = false;
70 Kevin 107
            this.Name = "Main_Menu_Form";
65 Kevin 108
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
109
            this.Text = "SWAT USB Installer";
110
            this.grp_Main_Menu.ResumeLayout(false);
111
            this.grp_Main_Menu.PerformLayout();
112
            this.ResumeLayout(false);
113
 
114
        }
115
 
116
        #endregion
117
 
118
        private System.Windows.Forms.GroupBox grp_Main_Menu;
119
        private System.Windows.Forms.Button btn_Drivers;
120
        private System.Windows.Forms.Button btn_Software;
121
        private System.Windows.Forms.Label lbl_Main_Menu;
122
        private System.Windows.Forms.Button btn_Exit;
123
    }
124
}
125