Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 Kevin 1
namespace SWAT_Office_App
2
{
3
    partial class Menu1_Main
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(Menu1_Main));
32
            this.groupBox_Menu1 = new System.Windows.Forms.GroupBox();
33
            this.btn_Settings = new System.Windows.Forms.Button();
34
            this.btn_UserMgmt = new System.Windows.Forms.Button();
35
            this.btn_Reimage_USB_Drives = new System.Windows.Forms.Button();
36
            this.groupBox_Menu1.SuspendLayout();
37
            this.SuspendLayout();
38
            // 
39
            // groupBox_Menu1
40
            // 
41
            this.groupBox_Menu1.Controls.Add(this.btn_Settings);
42
            this.groupBox_Menu1.Controls.Add(this.btn_UserMgmt);
43
            this.groupBox_Menu1.Controls.Add(this.btn_Reimage_USB_Drives);
44
            this.groupBox_Menu1.Location = new System.Drawing.Point(12, 12);
45
            this.groupBox_Menu1.Name = "groupBox_Menu1";
46
            this.groupBox_Menu1.Size = new System.Drawing.Size(142, 163);
47
            this.groupBox_Menu1.TabIndex = 0;
48
            this.groupBox_Menu1.TabStop = false;
49
            this.groupBox_Menu1.Text = "Main Menu";
50
            // 
51
            // btn_Settings
52
            // 
53
            this.btn_Settings.Location = new System.Drawing.Point(12, 111);
54
            this.btn_Settings.Name = "btn_Settings";
55
            this.btn_Settings.Size = new System.Drawing.Size(118, 40);
56
            this.btn_Settings.TabIndex = 3;
57
            this.btn_Settings.Text = "Program &Settings";
58
            this.btn_Settings.UseVisualStyleBackColor = true;
59
            this.btn_Settings.Click += new System.EventHandler(this.btn_Main_Settings_Click);
60
            // 
61
            // btn_UserMgmt
62
            // 
63
            this.btn_UserMgmt.Location = new System.Drawing.Point(12, 65);
64
            this.btn_UserMgmt.Name = "btn_UserMgmt";
65
            this.btn_UserMgmt.Size = new System.Drawing.Size(118, 40);
66
            this.btn_UserMgmt.TabIndex = 2;
67
            this.btn_UserMgmt.Text = "Manage User &Accounts and Shares";
68
            this.btn_UserMgmt.UseVisualStyleBackColor = true;
69
            this.btn_UserMgmt.Click += new System.EventHandler(this.btn_Main_UserMgmt_Click);
70
            // 
71
            // btn_Reimage_USB_Drives
72
            // 
73
            this.btn_Reimage_USB_Drives.Location = new System.Drawing.Point(12, 19);
74
            this.btn_Reimage_USB_Drives.Name = "btn_Reimage_USB_Drives";
75
            this.btn_Reimage_USB_Drives.Size = new System.Drawing.Size(118, 40);
76
            this.btn_Reimage_USB_Drives.TabIndex = 0;
77
            this.btn_Reimage_USB_Drives.Text = "&Reimage USB Drives";
78
            this.btn_Reimage_USB_Drives.UseVisualStyleBackColor = true;
79
            this.btn_Reimage_USB_Drives.Click += new System.EventHandler(this.btn_Reimage_USB_Drives_Click);
80
            // 
81
            // Menu1_Main
82
            // 
83
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85
            this.BackColor = System.Drawing.SystemColors.Control;
86
            this.ClientSize = new System.Drawing.Size(167, 186);
87
            this.Controls.Add(this.groupBox_Menu1);
88
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
89
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
15 Kevin 90
            this.KeyPreview = true;
9 Kevin 91
            this.MaximizeBox = false;
92
            this.Name = "Menu1_Main";
93
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
15 Kevin 94
            this.Text = "SWAT";
9 Kevin 95
            this.Load += new System.EventHandler(this.Menu1_Main_Load);
96
            this.groupBox_Menu1.ResumeLayout(false);
97
            this.ResumeLayout(false);
98
 
99
        }
100
 
101
        #endregion
102
 
103
        private System.Windows.Forms.GroupBox groupBox_Menu1;
104
        private System.Windows.Forms.Button btn_Settings;
105
        private System.Windows.Forms.Button btn_UserMgmt;
106
        private System.Windows.Forms.Button btn_Reimage_USB_Drives;
107
    }
108
}
109