Ejemplo n.º 1
0
        void InitializeData()
        {
            var buttonWidth  = 120;
            var buttonHeight = 30;
            int buttonCount  = Optionen.Length;

            MLblTitel.Text = Titel;
            this.Width     = 80 + (buttonCount * buttonWidth) + ((buttonCount - 1) * 20);
            SetPicture();

            for (int i = 0; i < buttonCount; i++)
            {
                var button = new MetroFramework.Controls.MetroButton
                {
                    Text           = Optionen[i],
                    Size           = new Size(buttonWidth, buttonHeight),
                    Location       = new Point(40 + (i * (buttonWidth + 20)), this.Height - 100),
                    Style          = this.ColorStyle,
                    Name           = $"ButtonOption{i}",
                    TabIndex       = i,
                    UseSelectable  = true,
                    UseStyleColors = true,
                    Tag            = i
                };
                button.Click += btn_Click;
                this.Controls.Add(button);
            }
        }
Ejemplo n.º 2
0
 private void InitializeComponent()
 {
     this.btnOmoguci  = new MetroFramework.Controls.MetroButton();
     this.cbRazduzeno = new MetroFramework.Controls.MetroCheckBox();
     this.SuspendLayout();
     //
     // btnOmoguci
     //
     this.btnOmoguci.Location = new System.Drawing.Point(166, 11);
     this.btnOmoguci.Name     = "btnOmoguci";
     this.btnOmoguci.Size     = new System.Drawing.Size(163, 23);
     this.btnOmoguci.TabIndex = 0;
     this.btnOmoguci.Text     = "Uvrsti stanje iznajmljivanja";
     this.btnOmoguci.Click   += new System.EventHandler(this.btnOmoguci_Click);
     //
     // cbRazduzeno
     //
     this.cbRazduzeno.Location = new System.Drawing.Point(35, 10);
     this.cbRazduzeno.Name     = "cbRazduzeno";
     this.cbRazduzeno.Size     = new System.Drawing.Size(104, 24);
     this.cbRazduzeno.TabIndex = 1;
     this.cbRazduzeno.Text     = "Razduženo";
     this.cbRazduzeno.UseVisualStyleBackColor = true;
     //
     // CheckBoxControl
     //
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.cbRazduzeno);
     this.Controls.Add(this.btnOmoguci);
     this.Name  = "CheckBoxControl";
     this.Size  = new System.Drawing.Size(500, 45);
     this.Load += new System.EventHandler(this.CheckBoxControl_Load);
     this.ResumeLayout(false);
 }
Ejemplo n.º 3
0
        public Bloc_Department(int position_x, int position_y, MetroFramework.Controls.MetroTabPage fenetre, List <Department> list_dep)
        {
            this.fenetre      = fenetre;
            panel_departement = new MetroFramework.Controls.MetroPanel();
            label_titre       = new MetroFramework.Controls.MetroLabel();
            button_inverser   = new MetroFramework.Controls.MetroButton();

            panel_departement.BorderStyle       = BorderStyle.FixedSingle;
            panel_departement.VerticalScrollbar = true;
            panel_departement.Location          = new Point(position_x, position_y);
            panel_departement.Size       = new Size(150, 230);
            panel_departement.AutoScroll = true;
            fenetre.Controls.Add(panel_departement);

            label_titre.Text     = "Quartier";
            label_titre.Location = new Point(10, 10);
            label_titre.Size     = new Size(60, 20);
            panel_departement.Controls.Add(label_titre);

            button_inverser.Text     = "Inverser";
            button_inverser.Location = new Point(75, 10);
            button_inverser.Size     = new Size(60, 20);
            panel_departement.Controls.Add(button_inverser);

            button_inverser.Click += Bouton_inverser_Click;


            for (int i = 0; i < list_dep.Count; i++)
            {
                Department_Element ajout = new Department_Element(list_dep[i], 10, 40 + 20 * i, panel_departement);
                list_department.Add(ajout);
            }
        }
Ejemplo n.º 4
0
 private void pressSim(MetroFramework.Controls.MetroButton sender)
 {
     sender.UseStyleColors = true;
     sender.Refresh();
     timer1.Enabled = true;
     sender.PerformClick();
 }
Ejemplo n.º 5
0
        /// <summary>
        /// catches the controller of the RightsWindow
        /// </summary>
        private void catchControllers()
        {
            btnSave   = (MetroFramework.Controls.MetroButton)parRightsWindow.Controls.Find("mBtnSave", true).First();
            btnCancel = (MetroFramework.Controls.MetroButton)parRightsWindow.Controls.Find("mBtnCancel", true).First();

            comboboxAllGroups = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxAllGroups", true).First();
            textboxGroupName  = (MetroFramework.Controls.MetroTextBox)parRightsWindow.Controls.Find("mTxtBxGroupName", true).First();
            labelGroupName    = (MetroFramework.Controls.MetroLabel)parRightsWindow.Controls.Find("mLblGroup", true).First();

            comboboxR6Accidents = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxAccidents", true).First();
            comboboxR4Users     = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxUsers", true).First();
            comboboxR5Rights    = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxRights", true).First();
            comboboxR7Store     = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxStore", true).First();
            comboboxR8Request   = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxRequest", true).First();
            comboboxR9Order     = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxOrder", true).First();
            comboboxR10Subcontr = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxSubcontr", true).First();

            comboboxR2LocalAccid   = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxAccidLocal", true).First();
            comboboxR3LocalUser    = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxUsersLocal", true).First();
            comboboxR1LocalRequest = (MetroFramework.Controls.MetroComboBox)parRightsWindow.Controls.Find("mCmbBxRequestLocal", true).First();

            tileNew    = (MetroFramework.Controls.MetroTile)parRightsWindow.Controls.Find("mTileNew", true).First();
            tileModify = (MetroFramework.Controls.MetroTile)parRightsWindow.Controls.Find("mTileModify", true).First();
            tileDelete = (MetroFramework.Controls.MetroTile)parRightsWindow.Controls.Find("mTileDelete", true).First();
        }
Ejemplo n.º 6
0
        private void Plugins_Load(object sender, System.EventArgs e)
        {
            int initLocationX    = 23;
            int initLocationY    = 76;
            int separationRight  = 20;
            int separationBottom = 20;
            int n = 0;

            foreach (IPlugin plugin in CLCore.PluginLoader.Plugins)
            {
                MetroFramework.Controls.MetroButton mBtn = new MetroFramework.Controls.MetroButton
                {
                    Text     = plugin.Name,
                    Location = new Point(initLocationX, initLocationY),
                    Size     = new Size(161, 50)
                };
                initLocationX += mBtn.Width + separationRight;
                if (n >= 3)
                {
                    initLocationY += mBtn.Height + separationBottom;
                }
                mBtn.Tag    = plugin;
                mBtn.Click += MBtn_Click;
                mBtn.Paint += MBtn_Paint;
                this.Controls.Add(mBtn);
                n++;
            }
        }
Ejemplo n.º 7
0
        private void remove_note_saved(Note note)
        {
            for (int i = 0; i < Notes_list_panel.Controls.Count; i++)
            {
                if (Notes_list_panel.Controls[i].Text == note.title)
                {
                    Notes_list_panel.Controls.Remove(Notes_list_panel.Controls[i]);
                    break;
                }
            }
            notes_saved.Remove(note);

            Notes_list_panel.Controls.Clear();

            int y = 0;

            foreach (Note note1 in notes_saved)
            {
                MetroFramework.Controls.MetroButton btn = new MetroFramework.Controls.MetroButton();
                btn.TextAlign = ContentAlignment.MiddleCenter;
                btn.Text      = note1.title;
                btn.AutoSize  = true;
                btn.Anchor    = AnchorStyles.Right & AnchorStyles.Left;
                btn.Theme     = MetroFramework.MetroThemeStyle.Dark;
                btn.Click    += this.Select_note;

                Notes_list_panel.Controls.Add(btn);
                btn.SetBounds(0, y, 210, 45);
                y += 50;
            }
            Notes_list_panel.Refresh();
        }
Ejemplo n.º 8
0
 public smartSwitch(string romName, string theName, string theCode, Form z1, bool state = false)
 {
     ff             = z1;
     roomName       = romName;
     name           = theName;
     code           = theCode;
     theMovablePart = new MetroFramework.Controls.MetroButton();
     z                    = new Panel();
     z.Size               = new Size(325, 45);
     thePressablePart     = new MaterialSkin.Controls.MaterialFlatButton();
     theMovablePart.Theme = MetroThemeStyle.Dark;
     theMovablePart.Text  = "OFF";
     theMovablePart.UseCustomBackColor = true;
     theMovablePart.UseCustomForeColor = true;
     theMovablePart.AutoSize           = false;
     theMovablePart.Size     = new Size(37, 36);
     theMovablePart.FontSize = MetroButtonSize.Medium;
     isOn     = state;
     isMoving = false;
     theMovablePart.ForeColor  = Color.White;
     theMovablePart.BackColor  = Color.FromArgb(210, 46, 46);
     thePressablePart.Text     = theName;
     thePressablePart.AutoSize = false;
     thePressablePart.Size     = new Size(115, 36);
     thePressablePart.Click   += toggle;
     theMovablePart.Click     += toggle;
 }
Ejemplo n.º 9
0
            public static void Popup(string Message)
            {
                ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));

                MetroFramework.Forms.MetroForm prompt = new MetroFramework.Forms.MetroForm()
                {
                    Width           = 280,
                    Height          = 135,
                    FormBorderStyle = FormBorderStyle.None,
                    Resizable       = false,
                    AutoSize        = true,
                    AutoSizeMode    = AutoSizeMode.GrowOnly,
                    Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))),
                    ControlBox      = false,
                    Theme           = MetroFramework.MetroThemeStyle.Dark,
                    DisplayHeader   = false,
                    TopMost         = true,
                    Text            = "",
                    StartPosition   = FormStartPosition.CenterScreen
                };
                MetroFramework.Controls.MetroLabel textLabel = new MetroFramework.Controls.MetroLabel()
                {
                    AutoSize = true, Left = 5, Top = 20, Text = Message, Width = 270, Height = 40, TextAlign = ContentAlignment.MiddleCenter, Theme = MetroFramework.MetroThemeStyle.Dark
                };
                MetroFramework.Controls.MetroButton confirmation = new MetroFramework.Controls.MetroButton()
                {
                    Text = "Ok", Left = 5, Width = 100, Top = 130, DialogResult = DialogResult.OK, Theme = MetroFramework.MetroThemeStyle.Dark
                };
                prompt.Controls.Add(confirmation);
                prompt.Controls.Add(textLabel);
                prompt.AcceptButton = confirmation;
                prompt.ShowDialog();
            }
Ejemplo n.º 10
0
        private void MBtn_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
        {
            MetroFramework.Controls.MetroButton btn = (MetroFramework.Controls.MetroButton)sender;
            float fontSize = NewFontSize(e.Graphics, btn.Size, btn.Font, btn.Text);
            Font  f        = new Font("Arial", fontSize, FontStyle.Bold);

            btn.Font = f;
        }
Ejemplo n.º 11
0
 public void nosound(MetroFramework.Controls.MetroButton btnname, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         btnname.PerformClick();
         e.Handled          = true;
         e.SuppressKeyPress = true;
     }
 }
Ejemplo n.º 12
0
        private void Show_list(object sender, EventArgs e)
        {
            splitContainer1.Panel2.Enabled = true;

            MetroFramework.Controls.MetroButton btn = (MetroFramework.Controls.MetroButton)sender;
            Lista list = manager_list.get_list(btn.Text);

            load_list(list);
        }
Ejemplo n.º 13
0
 /// <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(Customers));
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.metroButton3 = new MetroFramework.Controls.MetroButton();
     this.metroButton1 = new MetroFramework.Controls.MetroButton();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.GridColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.dataGridView1.Location = new System.Drawing.Point(23, 63);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(651, 364);
     this.dataGridView1.TabIndex = 0;
     this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     //
     // metroButton3
     //
     this.metroButton3.Location = new System.Drawing.Point(689, 143);
     this.metroButton3.Name = "metroButton3";
     this.metroButton3.Size = new System.Drawing.Size(102, 99);
     this.metroButton3.TabIndex = 17;
     this.metroButton3.Text = "Reset";
     this.metroButton3.Theme = MetroFramework.MetroThemeStyle.Dark;
     this.metroButton3.Click += new System.EventHandler(this.metroButton3_Click);
     //
     // metroButton1
     //
     this.metroButton1.Location = new System.Drawing.Point(689, 63);
     this.metroButton1.Name = "metroButton1";
     this.metroButton1.Size = new System.Drawing.Size(102, 74);
     this.metroButton1.TabIndex = 16;
     this.metroButton1.Text = "MainMenu";
     this.metroButton1.Theme = MetroFramework.MetroThemeStyle.Dark;
     this.metroButton1.Click += new System.EventHandler(this.metroButton1_Click);
     //
     // Customers
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.metroButton3);
     this.Controls.Add(this.metroButton1);
     this.Controls.Add(this.dataGridView1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Customers";
     this.Text = "Customers";
     this.TextAlign = System.Windows.Forms.VisualStyles.HorizontalAlign.Center;
     this.Theme = MetroFramework.MetroThemeStyle.Dark;
     this.Load += new System.EventHandler(this.Customers_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 14
0
 private void EnableMenuButton(MetroFramework.Controls.MetroButton b, bool enable)
 {
     b.Enabled = enable;
     if (b.Enabled)
     {
         b.BackColor = MenuButtonEnableColor;
     }
     else
     {
         b.BackColor = MenuButtonDisableColor;
     }
 }
Ejemplo n.º 15
0
 /// <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(Wizard));
     this.buttonCancel = new MetroFramework.Controls.MetroButton();
     this.buttonNext   = new MetroFramework.Controls.MetroButton();
     this.buttonBack   = new MetroFramework.Controls.MetroButton();
     this.buttonHelp   = new MetroFramework.Controls.MetroButton();
     this.SuspendLayout();
     //
     // buttonCancel
     //
     resources.ApplyResources(this.buttonCancel, "buttonCancel");
     this.buttonCancel.DialogResult   = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Name           = "buttonCancel";
     this.buttonCancel.UseSelectable  = true;
     this.buttonCancel.UseStyleColors = true;
     this.buttonCancel.Click         += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonNext
     //
     resources.ApplyResources(this.buttonNext, "buttonNext");
     this.buttonNext.Name           = "buttonNext";
     this.buttonNext.UseSelectable  = true;
     this.buttonNext.UseStyleColors = true;
     this.buttonNext.Click         += new System.EventHandler(this.buttonNext_Click);
     //
     // buttonBack
     //
     resources.ApplyResources(this.buttonBack, "buttonBack");
     this.buttonBack.Name           = "buttonBack";
     this.buttonBack.UseSelectable  = true;
     this.buttonBack.UseStyleColors = true;
     this.buttonBack.Click         += new System.EventHandler(this.buttonBack_Click);
     //
     // buttonHelp
     //
     resources.ApplyResources(this.buttonHelp, "buttonHelp");
     this.buttonHelp.Name           = "buttonHelp";
     this.buttonHelp.UseSelectable  = true;
     this.buttonHelp.UseStyleColors = true;
     this.buttonHelp.Click         += new System.EventHandler(this.buttonHelp_Click);
     //
     // Wizard
     //
     this.Controls.Add(this.buttonHelp);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonNext);
     this.Controls.Add(this.buttonBack);
     resources.ApplyResources(this, "$this");
     this.Name           = "Wizard";
     this.UseStyleColors = true;
     this.ResumeLayout(false);
 }
Ejemplo n.º 16
0
 public Docket()
 {
     Con2 = new SqlConnection("Data Source=.;Initial Catalog=RestuarantPOS3;Integrated Security=True");
     _orderFinishButton = new Button();
     _orderpanel        = new Panel();
     _flowplanne        = new FlowLayoutPanel();
     _ordernumber       = new Label();
     _orderGrid         = new DataGridView();
     _orderGrid2        = new DataGridView();
     EmployeeButton     = new MetroFramework.Controls.MetroButton();
     employeeCount      = 0;
 }
Ejemplo n.º 17
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要修改
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            MetroFramework.Controls.MetroButton ConfigureButton;
            this.StartButton = new MetroFramework.Controls.MetroButton();
            ConfigureButton = new MetroFramework.Controls.MetroButton();
            this.SuspendLayout();
            // 
            // StartButton
            // 
            this.StartButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.StartButton.Highlight = false;
            this.StartButton.Location = new System.Drawing.Point(178, 102);
            this.StartButton.Name = "StartButton";
            this.StartButton.Size = new System.Drawing.Size(230, 87);
            this.StartButton.Style = MetroFramework.MetroColorStyle.Blue;
            this.StartButton.StyleManager = null;
            this.StartButton.TabIndex = 0;
            this.StartButton.Text = "开始备份";
            this.StartButton.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.StartButton.Click += new System.EventHandler(this.StartButton_Click);
            // 
            // ConfigureButton
            // 
            ConfigureButton.Cursor = System.Windows.Forms.Cursors.Hand;
            ConfigureButton.Highlight = false;
            ConfigureButton.Location = new System.Drawing.Point(178, 231);
            ConfigureButton.Name = "ConfigureButton";
            ConfigureButton.Size = new System.Drawing.Size(230, 87);
            ConfigureButton.Style = MetroFramework.MetroColorStyle.Blue;
            ConfigureButton.StyleManager = null;
            ConfigureButton.TabIndex = 1;
            ConfigureButton.Text = "配置";
            ConfigureButton.Theme = MetroFramework.MetroThemeStyle.Dark;
            ConfigureButton.Click += new System.EventHandler(this.ConfigureButton_Click);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(603, 376);
            this.Controls.Add(ConfigureButton);
            this.Controls.Add(this.StartButton);
            this.DisplayHeader = false;
            this.Location = new System.Drawing.Point(0, 0);
            this.Name = "MainForm";
            this.Padding = new System.Windows.Forms.Padding(20, 30, 20, 20);
            this.Resizable = false;
            this.Text = "Form1";
            this.ResumeLayout(false);

        }
Ejemplo n.º 18
0
        public override void Paint(Graphics g)
        {
            var button = new MetroFramework.Controls.MetroButton();

            button.Location      = Location;
            button.Size          = Size;
            button.Text          = Text;
            button.UseSelectable = true;
            Bitmap bim = new Bitmap(Size.Width, Size.Height);

            button.DrawToBitmap(bim, new Rectangle(0, 0, Size.Width, Size.Height));
            g.DrawImage(bim, Location);
            button.Dispose();
        }
Ejemplo n.º 19
0
        public void setFormContent()
        {
            this.Controls.Clear();
            Debug.WriteLine(Page.currentpage + "/" + Page.pages.Count);
            this.NextSite = new MetroFramework.Controls.MetroButton();
            this.lastSite = new MetroFramework.Controls.MetroButton();


            int     y   = 40;
            NameTag tag = new NameTag();

            for (int i = 0; i < Page.pages[Page.currentpage].contactlist.Count; i++)
            {
                y += 25;

                this.Controls.Add(tag.renderNameTag(i, y));
            }



            if (Page.currentpage + 1 != Page.pages.Count)
            {
                //
                // NextSite
                //
                this.NextSite.Location      = new System.Drawing.Point(178, 342);
                this.NextSite.Name          = "NextSite";
                this.NextSite.Size          = new System.Drawing.Size(79, 23);
                this.NextSite.TabIndex      = 0;
                this.NextSite.Text          = "Nächste Seite";
                this.NextSite.UseSelectable = true;
                this.NextSite.Click        += NextSite_Click;
                this.Controls.Add(this.NextSite);
            }
            //
            // lastSite
            //
            if (Page.currentpage >= 1)
            {
                this.lastSite.Location      = new System.Drawing.Point(23, 342);
                this.lastSite.Name          = "lastSite";
                this.lastSite.Size          = new System.Drawing.Size(79, 23);
                this.lastSite.TabIndex      = 1;
                this.lastSite.Click        += LastSite_Click;
                this.lastSite.Text          = "Letzte Seite";
                this.lastSite.UseSelectable = true;
                this.Controls.Add(this.lastSite);
            }
        }
Ejemplo n.º 20
0
        private void createFields(Dictionary <string, string> keys)
        {
            int n         = keys.Count;
            var arrKeys   = keys.Keys.ToArray();
            var arrValues = keys.Values.ToArray();

            txtBox = new MetroFramework.Controls.MetroTextBox[n];
            lbl    = new MetroFramework.Controls.MetroLabel[n];
            btn    = new MetroFramework.Controls.MetroButton[n];

            for (int i = 0; i < n; ++i)
            {
                lbl[i]      = new MetroFramework.Controls.MetroLabel();
                lbl[i].Name = "label" + arrKeys[i];
                lbl[i].Text = arrKeys[i];

                txtBox[i]      = new MetroFramework.Controls.MetroTextBox();
                txtBox[i].Name = "txtBox" + arrValues[i];
                txtBox[i].Text = arrValues[i];

                btn[i]      = new MetroFramework.Controls.MetroButton();
                btn[i].Name = arrKeys[i];
                btn[i].Text = "X";
            }

            for (int i = 0; i < n; i++)
            {
                lbl[i].Visible     = true;
                lbl[i].Location    = new Point(10, 60 + space);
                txtBox[i].Visible  = true;
                txtBox[i].Location = new Point(100, 60 + space);
                txtBox[i].Size     = new System.Drawing.Size(75, 23);
                txtBox[i].TabIndex = n + 1;
                txtBox[i].ReadOnly = true;
                txtBox[i].Click   += delegate { Clipboard.SetText(this.ActiveControl.Text); };
                btn[i].Visible     = true;
                btn[i].Location    = new Point(200, 60 + space);
                btn[i].Size        = new System.Drawing.Size(25, 25);
                btn[i].TabIndex    = n + 2;
                btn[i].Click      += delegate { deleteKey(this.ActiveControl.Name); };
                this.Controls.Add(txtBox[i]);
                this.Controls.Add(lbl[i]);
                this.Controls.Add(btn[i]);
                space += 50;
            }

            space = 20;
        }
Ejemplo n.º 21
0
 private void InitializeComponent()
 {
     this.metroTextBox1 = new MetroFramework.Controls.MetroTextBox();
     this.metroButton1  = new MetroFramework.Controls.MetroButton();
     this.SuspendLayout();
     //
     // metroTextBox1
     //
     this.metroTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.metroTextBox1.Lines = new string[] {
         "metroTextBox1"
     };
     this.metroTextBox1.Location      = new System.Drawing.Point(24, 64);
     this.metroTextBox1.MaxLength     = 32767;
     this.metroTextBox1.Multiline     = true;
     this.metroTextBox1.Name          = "metroTextBox1";
     this.metroTextBox1.PasswordChar  = '\0';
     this.metroTextBox1.ScrollBars    = System.Windows.Forms.ScrollBars.Both;
     this.metroTextBox1.SelectedText  = "";
     this.metroTextBox1.Size          = new System.Drawing.Size(453, 364);
     this.metroTextBox1.TabIndex      = 0;
     this.metroTextBox1.Text          = "metroTextBox1";
     this.metroTextBox1.UseSelectable = true;
     //
     // metroButton1
     //
     this.metroButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.metroButton1.Location      = new System.Drawing.Point(23, 434);
     this.metroButton1.Name          = "metroButton1";
     this.metroButton1.Size          = new System.Drawing.Size(454, 37);
     this.metroButton1.TabIndex      = 1;
     this.metroButton1.Text          = "Save Settings";
     this.metroButton1.UseSelectable = true;
     this.metroButton1.Click        += new System.EventHandler(this.metroButton1_Click);
     //
     // EditForm
     //
     this.ClientSize = new System.Drawing.Size(500, 494);
     this.Controls.Add(this.metroButton1);
     this.Controls.Add(this.metroTextBox1);
     this.Name = "EditForm";
     this.Text = "Edit";
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 private void InitializeComponent()
 {
     this.metroTextBox1 = new MetroFramework.Controls.MetroTextBox();
     this.metroButton1 = new MetroFramework.Controls.MetroButton();
     this.SuspendLayout();
     //
     // metroTextBox1
     //
     this.metroTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.metroTextBox1.Lines = new string[] {
     "metroTextBox1"};
     this.metroTextBox1.Location = new System.Drawing.Point(24, 64);
     this.metroTextBox1.MaxLength = 32767;
     this.metroTextBox1.Multiline = true;
     this.metroTextBox1.Name = "metroTextBox1";
     this.metroTextBox1.PasswordChar = '\0';
     this.metroTextBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.metroTextBox1.SelectedText = "";
     this.metroTextBox1.Size = new System.Drawing.Size(453, 364);
     this.metroTextBox1.TabIndex = 0;
     this.metroTextBox1.Text = "metroTextBox1";
     this.metroTextBox1.UseSelectable = true;
     //
     // metroButton1
     //
     this.metroButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.metroButton1.Location = new System.Drawing.Point(23, 434);
     this.metroButton1.Name = "metroButton1";
     this.metroButton1.Size = new System.Drawing.Size(454, 37);
     this.metroButton1.TabIndex = 1;
     this.metroButton1.Text = "Save Settings";
     this.metroButton1.UseSelectable = true;
     this.metroButton1.Click += new System.EventHandler(this.metroButton1_Click);
     //
     // EditForm
     //
     this.ClientSize = new System.Drawing.Size(500, 494);
     this.Controls.Add(this.metroButton1);
     this.Controls.Add(this.metroTextBox1);
     this.Name = "EditForm";
     this.Text = "Edit";
     this.ResumeLayout(false);
 }
Ejemplo n.º 23
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.CounterLabel    = new MetroFramework.Controls.MetroLabel();
     this.IncrementButton = new MetroFramework.Controls.MetroButton();
     this.ResetButton     = new MetroFramework.Controls.MetroButton();
     this.SuspendLayout();
     //
     // CounterLabel
     //
     this.CounterLabel.Location = new System.Drawing.Point(24, 64);
     this.CounterLabel.Name     = "CounterLabel";
     this.CounterLabel.Size     = new System.Drawing.Size(100, 23);
     this.CounterLabel.TabIndex = 0;
     this.CounterLabel.Text     = "0";
     //
     // IncrementButton
     //
     this.IncrementButton.Location      = new System.Drawing.Point(24, 91);
     this.IncrementButton.Name          = "IncrementButton";
     this.IncrementButton.Size          = new System.Drawing.Size(75, 23);
     this.IncrementButton.TabIndex      = 1;
     this.IncrementButton.Text          = "Increment";
     this.IncrementButton.UseSelectable = true;
     //
     // ResetButton
     //
     this.ResetButton.Location      = new System.Drawing.Point(105, 90);
     this.ResetButton.Name          = "ResetButton";
     this.ResetButton.Size          = new System.Drawing.Size(75, 23);
     this.ResetButton.TabIndex      = 2;
     this.ResetButton.Text          = "Reset";
     this.ResetButton.UseSelectable = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(300, 300);
     this.Controls.Add(this.ResetButton);
     this.Controls.Add(this.IncrementButton);
     this.Controls.Add(this.CounterLabel);
     this.Name  = "MainForm";
     this.Text  = "MetroUICounter";
     this.Load += new System.EventHandler(this.MainFormLoad);
     this.ResumeLayout(false);
 }
Ejemplo n.º 24
0
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
     metroProgressSpinner1 = new MetroFramework.Controls.MetroProgressSpinner();
     metroButton1          = new MetroFramework.Controls.MetroButton();
     Themer = new MetroFramework.Components.MetroStyleManager(components);
     SuspendLayout();
     metroProgressSpinner1.Cursor   = System.Windows.Forms.Cursors.AppStarting;
     metroProgressSpinner1.Location = new System.Drawing.Point(23, 57);
     metroProgressSpinner1.Maximum  = 100;
     metroProgressSpinner1.Name     = "metroProgressSpinner1";
     metroProgressSpinner1.Size     = new System.Drawing.Size(200, 200);
     metroProgressSpinner1.TabIndex = 0;
     metroProgressSpinner1.Theme    = MetroFramework.MetroThemeStyle.Dark;
     metroProgressSpinner1.Value    = 1;
     metroButton1.Cursor            = System.Windows.Forms.Cursors.Default;
     metroButton1.Location          = new System.Drawing.Point(85, 147);
     metroButton1.Name        = "metroButton1";
     metroButton1.Size        = new System.Drawing.Size(75, 23);
     metroButton1.TabIndex    = 1;
     metroButton1.TabStop     = false;
     metroButton1.Text        = "Cancel";
     metroButton1.Theme       = MetroFramework.MetroThemeStyle.Dark;
     metroButton1.Click      += new System.EventHandler(metroButton1_Click);
     Themer.Owner             = this;
     base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     base.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize          = new System.Drawing.Size(250, 280);
     base.ControlBox          = false;
     base.Controls.Add(metroButton1);
     base.Controls.Add(metroProgressSpinner1);
     Cursor           = System.Windows.Forms.Cursors.AppStarting;
     base.Icon        = (System.Drawing.Icon)resources.GetObject("$this.Icon");
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name        = "Form2";
     base.Resizable   = false;
     base.ShadowType  = MetroFramework.Forms.MetroFormShadowType.AeroShadow;
     Text             = "Loading BnS Buddy";
     base.TextAlign   = MetroFramework.Forms.MetroFormTextAlign.Center;
     base.Theme       = MetroFramework.MetroThemeStyle.Dark;
     base.TopMost     = true;
     ((System.ComponentModel.ISupportInitialize)Themer).EndInit();
     ResumeLayout(false);
 }
Ejemplo n.º 25
0
        public MetroFramework.Controls.MetroButton boton(string nombre, int id_mod, EventHandler cosa)
        {
            MetroFramework.Controls.MetroButton Boton = new MetroFramework.Controls.MetroButton();
            Boton.Text           = nombre;
            Boton.AccessibleName = (id_mod).ToString();
            Boton.Dock           = DockStyle.Top;
            Boton.Height         = 30;
            Boton.BackColor      = Color.FromArgb(15, 112, 183);
            Boton.FlatStyle      = FlatStyle.Flat;
            Boton.ForeColor      = Color.FromArgb(45, 45, 48);
            Boton.Click         += new EventHandler(cosa);
            Boton.BackColor      = Color.FromArgb(18, 134, 219);


            Boton.ForeColor = Color.Silver;
            Boton.FlatAppearance.BorderSize = 0;
            return(Boton);
        }
Ejemplo n.º 26
0
 public MetroFramework.Controls.MetroButton boton2(string nombre, string FormNombre, EventHandler cosa)
 {
     MetroFramework.Controls.MetroButton Boton = new MetroFramework.Controls.MetroButton();
     Boton.Text                      = nombre;
     Boton.AccessibleName            = FormNombre;
     Boton.Dock                      = DockStyle.Top;
     Boton.Height                    = 30;
     Boton.BackColor                 = Color.FromArgb(15, 112, 183);
     Boton.FlatStyle                 = FlatStyle.Flat;
     Boton.ForeColor                 = Color.FromArgb(45, 45, 48);
     Boton.Click                    += new EventHandler(cosa);
     Boton.BackColor                 = Color.FromArgb(18, 134, 219);
     Boton.FlatStyle                 = System.Windows.Forms.FlatStyle.Flat;
     Boton.Font                      = new System.Drawing.Font("Century Gothic", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     Boton.ForeColor                 = Color.Silver;
     Boton.FlatAppearance.BorderSize = 0;
     return(Boton);
 }
Ejemplo n.º 27
0
        public void addcamera(object sock, int count)
        {
            Socket _client = sock as Socket;

            if (this.InvokeRequired)
            {
                this.BeginInvoke((MethodInvoker) delegate()
                {
                    Bunifu.Framework.UI.BunifuImageButton[] _cameraPicture = new Bunifu.Framework.UI.BunifuImageButton[count];
                    MetroFramework.Controls.MetroButton[] _camerabutton    = new MetroFramework.Controls.MetroButton[count];
                    int brh = 0;


                    for (int i = 0; i < count; i++)
                    {
                        if (camFlowPanel.Controls.Contains(_cameraPicture[i]))
                        {
                            var controltoremove     = camFlowPanel.Controls[i];
                            controltoremove.Visible = false;
                            camFlowPanel.Controls.Remove(controltoremove);
                        }
                        _cameraPicture[i]           = new Bunifu.Framework.UI.BunifuImageButton();
                        _cameraPicture[i].BackColor = Color.White;
                        _cameraPicture[i].Image     = Properties.Resources.webcam;
                        _cameraPicture[i].Location  = new Point(953, 95 + brh);
                        _cameraPicture[i].Size      = new Size(180, 120);
                        _cameraPicture[i].Name      = _client.RemoteEndPoint.ToString();
                        _cameraPicture[i].Zoom      = 0;

                        _camerabutton[i]        = new MetroFramework.Controls.MetroButton();
                        _camerabutton[i].Click += new EventHandler(selectCameraOnClick);

                        _camerabutton[i].Text = i.ToString() + "_" + _client.RemoteEndPoint.ToString();

                        _camerabutton[i].Name = "but" + i;
                        _camerabutton[i].Size = new Size(144, 18);
                        _camerabutton[i].Dock = DockStyle.Bottom;
                        _cameraPicture[i].Controls.Add(_camerabutton[i]);
                        camFlowPanel.Size = new Size(200, 120);
                        camFlowPanel.Controls.Add(_cameraPicture[i]);
                    }
                });
            }
        }
Ejemplo n.º 28
0
        public void addDisplay(object sock, int count)
        {
            Socket _client = sock as Socket;

            if (this.InvokeRequired)
            {
                this.BeginInvoke((MethodInvoker) delegate()
                {
                    Bunifu.Framework.UI.BunifuImageButton[] displayList = new Bunifu.Framework.UI.BunifuImageButton[count];
                    MetroFramework.Controls.MetroButton[] butns         = new MetroFramework.Controls.MetroButton[count];
                    int brh = 0;


                    for (int i = 0; i < count; i++)
                    {
                        if (rdpFlowPanel.Controls.Contains(displayList[i]))
                        {
                            var controltoremove     = flowLayoutPanel1.Controls[i];
                            controltoremove.Visible = false;
                            rdpFlowPanel.Controls.Remove(controltoremove);
                        }
                        displayList[i]           = new Bunifu.Framework.UI.BunifuImageButton();
                        displayList[i].BackColor = Color.White;
                        displayList[i].Image     = Properties.Resources.rdpDisplay;
                        displayList[i].Location  = new Point(953, 95 + brh);
                        displayList[i].Size      = new Size(200, 120);
                        displayList[i].Name      = _client.RemoteEndPoint.ToString();
                        displayList[i].Zoom      = 0;

                        butns[i]        = new MetroFramework.Controls.MetroButton();
                        butns[i].Click += new EventHandler(selectMonitor_onClick);
                        int id          = i;/*1 + i;*/
                        butns[i].Text   = id.ToString() + "_" + _client.RemoteEndPoint.ToString();
                        butns[i].Name   = "but" + i;
                        butns[i].Size   = new Size(144, 18);
                        butns[i].Dock   = DockStyle.Bottom;
                        displayList[i].Controls.Add(butns[i]);
                        rdpFlowPanel.Size = new Size(200, 120);
                        rdpFlowPanel.Controls.Add(displayList[i]);
                    }
                });
            }
        }
        /// <summary>
        /// catches the controls on the profile mangment wiondow
        /// </summary>
        private void catchWindowcontrols()
        {
            txtbLaName    = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxLastName", true).First();
            txtbFiName    = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxFirstName", true).First();
            txtbTaj       = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxTaj", true).First();
            btnSaveData   = (MetroFramework.Controls.MetroButton)personalWin.Controls.Find("mBtnSaveDatas", true).First();
            btnCancelData = (MetroFramework.Controls.MetroButton)personalWin.Controls.Find("mBtnCancelDet", true).First();

            txtbOldPwd     = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxPwdOld", true).First();
            txtbPwdNew     = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxPwdNew", true).First();
            txtbPwdNewConf = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxPwdNewConf", true).First();
            btnSavePwd     = (MetroFramework.Controls.MetroButton)personalWin.Controls.Find("mBtnSaveNewPwd", true).First();
            btnCancelPwd   = (MetroFramework.Controls.MetroButton)personalWin.Controls.Find("mBtnCancelPwd", true).First();

            txtbUserName  = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxUserName", true).First();
            txtbUserGroup = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxUserGroup", true).First();
            txtbPosition  = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxPosition", true).First();
            txtbArea      = (MetroFramework.Controls.MetroTextBox)personalWin.Controls.Find("mTxtBxWorkArea", true).First();

            labelInfo = (MetroFramework.Controls.MetroLabel)personalWin.Controls.Find("mLabelInfo", true).First();
        }
Ejemplo n.º 30
0
        private void insert_new_note_in_panel(string title)
        {
            MetroFramework.Controls.MetroButton btn = new MetroFramework.Controls.MetroButton();
            btn.TextAlign = ContentAlignment.MiddleCenter;
            btn.Text      = title;
            btn.AutoSize  = true;
            btn.Anchor    = AnchorStyles.Right & AnchorStyles.Left;
            btn.Click    += this.Select_note;
            btn.Theme     = MetroFramework.MetroThemeStyle.Dark;

            int y = 0;

            if (Notes_list_panel.Controls.Count > 0)
            {
                y = Notes_list_panel.Controls[Notes_list_panel.Controls.Count - 1].Bounds.Y + 50;
            }

            Notes_list_panel.Controls.Add(btn);
            btn.SetBounds(0, y, 210, 45);

            Notes_list_panel.Refresh();
        }
Ejemplo n.º 31
0
        private void update_list_pn(string title)
        {
            int y = 3;

            if (List_lists.Controls.Count > 0)
            {
                MetroFramework.Controls.MetroButton btn = (MetroFramework.Controls.MetroButton)List_lists.Controls[List_lists.Controls.Count - 1];
                y = btn.Bounds.Y + 50;
            }

            MetroFramework.Controls.MetroButton new_btn = new MetroFramework.Controls.MetroButton();
            new_btn.TextAlign = ContentAlignment.MiddleCenter;
            new_btn.Text      = title;
            new_btn.AutoSize  = true;
            new_btn.Anchor    = AnchorStyles.Right & AnchorStyles.Left;
            //new_btn.Click += this.Show_list;
            new_btn.Theme = MetroFramework.MetroThemeStyle.Dark;

            List_lists.Controls.Add(new_btn);
            new_btn.SetBounds(0, y, 210, 45);

            List_lists.Refresh();
        }
Ejemplo n.º 32
0
        private void Form6_Load(object sender, EventArgs e)
        {
            string  json = config.DispServerList();
            JObject serv = JObject.Parse(json);

            foreach (JObject obj in serv["servers"])
            {
                FlowLayoutPanel panel = new FlowLayoutPanel();
                panel.FlowDirection = FlowDirection.TopDown;
                panel.BackColor     = SystemColors.MenuBar;
                PictureBox picture = new PictureBox()
                {
                    ImageLocation = config.GetAppData() + (string)obj["type"] + ".png",
                    Anchor        = AnchorStyles.None
                };
                panel.Controls.Add(picture);
                panel.Width        = picture.Width;
                panel.AutoSize     = true;
                panel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
                panel.Padding      = new Padding(10);
                panel.Controls.Add(new MetroFramework.Controls.MetroLabel()
                {
                    Text = (string)obj["name"], Width = picture.Width, TextAlign = ContentAlignment.MiddleCenter, UseCustomBackColor = true, BackColor = SystemColors.MenuBar
                });
                MetroFramework.Controls.MetroButton buttonDetails = new MetroFramework.Controls.MetroButton()
                {
                    Text   = "Détails",
                    Name   = (string)obj["name"],
                    Anchor = AnchorStyles.None,
                    Width  = picture.Width
                };
                buttonDetails.Click += EditSourceClick;
                panel.Controls.Add(buttonDetails);
                flowLayoutPanel1.Controls.Add(panel);
            }
        }
Ejemplo n.º 33
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要修改
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            MetroFramework.Controls.MetroButton ConfigureButton;
            this.StartButton = new MetroFramework.Controls.MetroButton();
            this.ProgressBar = new MetroFramework.Controls.MetroProgressBar();
            this.LogText = new System.Windows.Forms.RichTextBox();
            ConfigureButton = new MetroFramework.Controls.MetroButton();
            this.SuspendLayout();
            // 
            // ConfigureButton
            // 
            ConfigureButton.Cursor = System.Windows.Forms.Cursors.Hand;
            ConfigureButton.Highlight = false;
            ConfigureButton.Location = new System.Drawing.Point(63, 77);
            ConfigureButton.Name = "ConfigureButton";
            ConfigureButton.Size = new System.Drawing.Size(230, 87);
            ConfigureButton.Style = MetroFramework.MetroColorStyle.Blue;
            ConfigureButton.StyleManager = null;
            ConfigureButton.TabIndex = 1;
            ConfigureButton.Text = "配置";
            ConfigureButton.Theme = MetroFramework.MetroThemeStyle.Dark;
            ConfigureButton.Click += new System.EventHandler(this.ConfigureButton_Click);
            // 
            // StartButton
            // 
            this.StartButton.Cursor = System.Windows.Forms.Cursors.Hand;
            this.StartButton.Highlight = false;
            this.StartButton.Location = new System.Drawing.Point(329, 77);
            this.StartButton.Name = "StartButton";
            this.StartButton.Size = new System.Drawing.Size(230, 87);
            this.StartButton.Style = MetroFramework.MetroColorStyle.Blue;
            this.StartButton.StyleManager = null;
            this.StartButton.TabIndex = 0;
            this.StartButton.Text = "开始备份";
            this.StartButton.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.StartButton.Click += new System.EventHandler(this.StartButton_Click);
            // 
            // ProgressBar
            // 
            this.ProgressBar.FontSize = MetroFramework.MetroProgressBarSize.Medium;
            this.ProgressBar.FontWeight = MetroFramework.MetroProgressBarWeight.Light;
            this.ProgressBar.HideProgressText = true;
            this.ProgressBar.Location = new System.Drawing.Point(63, 395);
            this.ProgressBar.Name = "ProgressBar";
            this.ProgressBar.ProgressBarStyle = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.ProgressBar.Size = new System.Drawing.Size(496, 31);
            this.ProgressBar.Style = MetroFramework.MetroColorStyle.Teal;
            this.ProgressBar.StyleManager = null;
            this.ProgressBar.TabIndex = 3;
            this.ProgressBar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.ProgressBar.Theme = MetroFramework.MetroThemeStyle.Light;
            // 
            // LogText
            // 
            this.LogText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.LogText.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.LogText.Location = new System.Drawing.Point(63, 203);
            this.LogText.Name = "LogText";
            this.LogText.ReadOnly = true;
            this.LogText.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
            this.LogText.Size = new System.Drawing.Size(496, 166);
            this.LogText.TabIndex = 4;
            this.LogText.Text = "";
            this.LogText.TextChanged += new System.EventHandler(this.LogText_TextChanged);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(647, 460);
            this.Controls.Add(this.LogText);
            this.Controls.Add(this.ProgressBar);
            this.Controls.Add(ConfigureButton);
            this.Controls.Add(this.StartButton);
            this.DisplayHeader = false;
            this.Location = new System.Drawing.Point(0, 0);
            this.Name = "MainForm";
            this.Padding = new System.Windows.Forms.Padding(20, 30, 20, 20);
            this.Resizable = false;
            this.Text = "Form1";
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.old_user_name = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.old_password = new System.Windows.Forms.TextBox();
     this.new_user_name = new System.Windows.Forms.TextBox();
     this.new_pass_word = new System.Windows.Forms.TextBox();
     this.confirm_new_pass_word = new System.Windows.Forms.TextBox();
     this.changeloginCredentials = new MetroFramework.Controls.MetroButton();
     this.SuspendLayout();
     //
     // old_user_name
     //
     this.old_user_name.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.old_user_name.Location = new System.Drawing.Point(185, 81);
     this.old_user_name.Name = "old_user_name";
     this.old_user_name.Size = new System.Drawing.Size(211, 26);
     this.old_user_name.TabIndex = 0;
     this.old_user_name.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label1.Location = new System.Drawing.Point(86, 85);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(83, 20);
     this.label1.TabIndex = 1;
     this.label1.Text = "User Name";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label2.Location = new System.Drawing.Point(97, 124);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 20);
     this.label2.TabIndex = 2;
     this.label2.Text = "PassWord";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label3.Location = new System.Drawing.Point(57, 166);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(112, 20);
     this.label3.TabIndex = 3;
     this.label3.Text = "New UserName";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label4.Location = new System.Drawing.Point(63, 199);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(106, 20);
     this.label4.TabIndex = 4;
     this.label4.Text = "New PassWord";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label5.Location = new System.Drawing.Point(4, 237);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(165, 20);
     this.label5.TabIndex = 5;
     this.label5.Text = "Confirm New PassWord";
     //
     // old_password
     //
     this.old_password.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.old_password.Location = new System.Drawing.Point(185, 120);
     this.old_password.Name = "old_password";
     this.old_password.PasswordChar = '*';
     this.old_password.Size = new System.Drawing.Size(211, 26);
     this.old_password.TabIndex = 6;
     this.old_password.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // new_user_name
     //
     this.new_user_name.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.new_user_name.Location = new System.Drawing.Point(185, 162);
     this.new_user_name.Name = "new_user_name";
     this.new_user_name.Size = new System.Drawing.Size(211, 26);
     this.new_user_name.TabIndex = 7;
     //
     // new_pass_word
     //
     this.new_pass_word.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.new_pass_word.Location = new System.Drawing.Point(185, 195);
     this.new_pass_word.Name = "new_pass_word";
     this.new_pass_word.PasswordChar = '*';
     this.new_pass_word.Size = new System.Drawing.Size(211, 26);
     this.new_pass_word.TabIndex = 8;
     //
     // confirm_new_pass_word
     //
     this.confirm_new_pass_word.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.confirm_new_pass_word.Location = new System.Drawing.Point(185, 233);
     this.confirm_new_pass_word.Name = "confirm_new_pass_word";
     this.confirm_new_pass_word.PasswordChar = '*';
     this.confirm_new_pass_word.Size = new System.Drawing.Size(211, 26);
     this.confirm_new_pass_word.TabIndex = 9;
     //
     // changeloginCredentials
     //
     this.changeloginCredentials.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.changeloginCredentials.Cursor = System.Windows.Forms.Cursors.Hand;
     this.changeloginCredentials.Location = new System.Drawing.Point(220, 271);
     this.changeloginCredentials.Name = "changeloginCredentials";
     this.changeloginCredentials.Size = new System.Drawing.Size(123, 32);
     this.changeloginCredentials.TabIndex = 18;
     this.changeloginCredentials.Text = "Change";
     this.changeloginCredentials.UseSelectable = true;
     this.changeloginCredentials.Click += new System.EventHandler(this.changeloginCredentials_Click);
     //
     // ChangeUserLoginDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(513, 326);
     this.Controls.Add(this.changeloginCredentials);
     this.Controls.Add(this.confirm_new_pass_word);
     this.Controls.Add(this.new_pass_word);
     this.Controls.Add(this.new_user_name);
     this.Controls.Add(this.old_password);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.old_user_name);
     this.Name = "ChangeUserLoginDetails";
     this.Text = "Change Login Details";
     this.Theme = MetroFramework.MetroThemeStyle.Dark;
     this.Load += new System.EventHandler(this.ChangeUserLoginDetails_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 35
0
 /// <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(Tool_AW));
     System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem19 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem20 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem21 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem22 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem23 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem24 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem25 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem26 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem27 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem28 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     ""}, -1);
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     this.TabAW = new LogIn_Theme_Dll_By_xVenoxi.LogInTabControl();
     this.TabHome = new System.Windows.Forms.TabPage();
     this.linkLabel5 = new System.Windows.Forms.LinkLabel();
     this.label31 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.logInButton77 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInGroupBox1 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.linkLabel4 = new System.Windows.Forms.LinkLabel();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.LoginGroupbox = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.metroButton2 = new MetroFramework.Controls.MetroButton();
     this.metroButton1 = new MetroFramework.Controls.MetroButton();
     this.metroButton8 = new MetroFramework.Controls.MetroButton();
     this.labelConnect = new System.Windows.Forms.Label();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.logInRadioButton2 = new LogIn_Theme_Dll_By_xVenoxi.LogInRadioButton();
     this.RadioCCAPI = new LogIn_Theme_Dll_By_xVenoxi.LogInRadioButton();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.numHOURS = new System.Windows.Forms.NumericUpDown();
     this.numMINUTES = new System.Windows.Forms.NumericUpDown();
     this.numDAY = new System.Windows.Forms.NumericUpDown();
     this.checkACC = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.logInNumericACCURACY = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label7 = new System.Windows.Forms.Label();
     this.logInButton16 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.checkTIME = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkDEATHS = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkKILLS = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkGP = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkLOSSES = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkWINS = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkPRESTIGE = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.checkSCORE = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelSPM = new System.Windows.Forms.Label();
     this.labelRatioWL = new System.Windows.Forms.Label();
     this.labelRatioKD = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.logInButton6 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInButton5 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInButton4 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInButton3 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInButton2 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInCheckBoxUNALL = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.logInNumericDEATHS = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label14 = new System.Windows.Forms.Label();
     this.logInNumericKILLS = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label15 = new System.Windows.Forms.Label();
     this.logInNumericGAMESPLAYED = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label16 = new System.Windows.Forms.Label();
     this.logInNumericLOSSES = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label11 = new System.Windows.Forms.Label();
     this.logInNumericWINS = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label12 = new System.Windows.Forms.Label();
     this.logInNumericPRESTIGE = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label6 = new System.Windows.Forms.Label();
     this.logInCheckBoxLVL50 = new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox();
     this.logInNumericSCORE = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label68 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.logInGroupBox4 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.textBoxCLANTAG = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.logInButton1 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInGroupBox3 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.logInButton9 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInNormalTextBox1 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.logInGroupBox25 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.label69 = new System.Windows.Forms.Label();
     this.label83 = new System.Windows.Forms.Label();
     this.label84 = new System.Windows.Forms.Label();
     this.label85 = new System.Windows.Forms.Label();
     this.label86 = new System.Windows.Forms.Label();
     this.label95 = new System.Windows.Forms.Label();
     this.label103 = new System.Windows.Forms.Label();
     this.label104 = new System.Windows.Forms.Label();
     this.label105 = new System.Windows.Forms.Label();
     this.label106 = new System.Windows.Forms.Label();
     this.label107 = new System.Windows.Forms.Label();
     this.label108 = new System.Windows.Forms.Label();
     this.logInGroupBox2 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.logInButton8 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.Classe6 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.Classe10 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.logInButton7 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.Classe9 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.textBox24 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.Classe7 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.Classe8 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.Classe5 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.Classe4 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.Classe3 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.Classe2 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.Classe1 = new LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.logInButton13 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.listView1 = new System.Windows.Forms.ListView();
     this.ClientNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ClientName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.logInGroupBox5 = new LogIn_Theme_Dll_By_xVenoxi.LogInGroupBox();
     this.metroToggle8 = new MetroFramework.Controls.MetroToggle();
     this.label30 = new System.Windows.Forms.Label();
     this.metroToggle6 = new MetroFramework.Controls.MetroToggle();
     this.metroToggle5 = new MetroFramework.Controls.MetroToggle();
     this.metroToggle4 = new MetroFramework.Controls.MetroToggle();
     this.metroToggle3 = new MetroFramework.Controls.MetroToggle();
     this.metroToggle2 = new MetroFramework.Controls.MetroToggle();
     this.metroToggle1 = new MetroFramework.Controls.MetroToggle();
     this.label33 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.logInNumericTIMEMINFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.logInNumericTIMEDAYFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.logInNumericTIMEHFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.logInNumericDEATHSFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label60 = new System.Windows.Forms.Label();
     this.logInNumericKILLSFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label61 = new System.Windows.Forms.Label();
     this.logInNumericGPFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label62 = new System.Windows.Forms.Label();
     this.logInNumericLOSSESFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label63 = new System.Windows.Forms.Label();
     this.logInNumericWINSFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label64 = new System.Windows.Forms.Label();
     this.logInNumericSCOREFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label65 = new System.Windows.Forms.Label();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.label9 = new System.Windows.Forms.Label();
     this.label98 = new System.Windows.Forms.Label();
     this.label157 = new System.Windows.Forms.Label();
     this.label158 = new System.Windows.Forms.Label();
     this.logInButton12 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.logInNumericPRESTIGEFL = new LogIn_Theme_Dll_By_xVenoxi.LogInNumeric();
     this.label43 = new System.Windows.Forms.Label();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.groupBoxEBOOT = new System.Windows.Forms.GroupBox();
     this.label91 = new System.Windows.Forms.Label();
     this.label97 = new System.Windows.Forms.Label();
     this.label92 = new System.Windows.Forms.Label();
     this.label93 = new System.Windows.Forms.Label();
     this.label94 = new System.Windows.Forms.Label();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.logInButton11 = new LogIn_Theme_Dll_By_xVenoxi.LogInButton();
     this.label42 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.TabAW.SuspendLayout();
     this.TabHome.SuspendLayout();
     this.logInGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.LoginGroupbox.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numHOURS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMINUTES)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numDAY)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.logInGroupBox4.SuspendLayout();
     this.logInGroupBox3.SuspendLayout();
     this.logInGroupBox25.SuspendLayout();
     this.logInGroupBox2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.logInGroupBox5.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.groupBox20.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.groupBoxEBOOT.SuspendLayout();
     this.groupBox14.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBox2.Location = new System.Drawing.Point(89, 12);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(19, 20);
     this.pictureBox2.TabIndex = 294;
     this.pictureBox2.TabStop = false;
     this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBox1.Location = new System.Drawing.Point(63, 12);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(19, 20);
     this.pictureBox1.TabIndex = 293;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(185)))), ((int)(((byte)(55)))));
     this.label1.Location = new System.Drawing.Point(114, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(245, 17);
     this.label1.TabIndex = 296;
     this.label1.Text = "Tool Advanced Warfare - By OasixFTW";
     //
     // TabAW
     //
     this.TabAW.ActiveColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.TabAW.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.TabAW.BackTabColour = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.TabAW.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(12)))), ((int)(((byte)(12)))));
     this.TabAW.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     this.TabAW.Controls.Add(this.TabHome);
     this.TabAW.Controls.Add(this.tabPage1);
     this.TabAW.Controls.Add(this.tabPage2);
     this.TabAW.Controls.Add(this.tabPage3);
     this.TabAW.Controls.Add(this.tabPage5);
     this.TabAW.Controls.Add(this.tabPage4);
     this.TabAW.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.TabAW.HorizontalLineColour = System.Drawing.Color.Orange;
     this.TabAW.ItemSize = new System.Drawing.Size(240, 32);
     this.TabAW.Location = new System.Drawing.Point(45, 53);
     this.TabAW.Name = "TabAW";
     this.TabAW.SelectedIndex = 0;
     this.TabAW.Size = new System.Drawing.Size(776, 464);
     this.TabAW.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
     this.TabAW.TabIndex = 297;
     this.TabAW.TextColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.TabAW.UpLineColour = System.Drawing.Color.Orange;
     //
     // TabHome
     //
     this.TabHome.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.TabHome.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TabHome.Controls.Add(this.linkLabel5);
     this.TabHome.Controls.Add(this.label31);
     this.TabHome.Controls.Add(this.label10);
     this.TabHome.Controls.Add(this.label8);
     this.TabHome.Controls.Add(this.logInButton77);
     this.TabHome.Controls.Add(this.logInGroupBox1);
     this.TabHome.Controls.Add(this.pictureBox4);
     this.TabHome.Controls.Add(this.LoginGroupbox);
     this.TabHome.Location = new System.Drawing.Point(4, 36);
     this.TabHome.Name = "TabHome";
     this.TabHome.Padding = new System.Windows.Forms.Padding(3);
     this.TabHome.Size = new System.Drawing.Size(768, 424);
     this.TabHome.TabIndex = 0;
     this.TabHome.Text = "Home";
     //
     // linkLabel5
     //
     this.linkLabel5.AutoSize = true;
     this.linkLabel5.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel5.LinkColor = System.Drawing.SystemColors.MenuHighlight;
     this.linkLabel5.Location = new System.Drawing.Point(237, 5);
     this.linkLabel5.Name = "linkLabel5";
     this.linkLabel5.Size = new System.Drawing.Size(309, 21);
     this.linkLabel5.TabIndex = 271;
     this.linkLabel5.TabStop = true;
     this.linkLabel5.Text = "Besoin d\'un launcher all COD ? Cliquez ICI !";
     this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.ForeColor = System.Drawing.Color.SaddleBrown;
     this.label31.Location = new System.Drawing.Point(181, 398);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(400, 19);
     this.label31.TabIndex = 270;
     this.label31.Text = "Changelog v1.4 : Correction d\'un bug lors de l\'éxécution du tool";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.SandyBrown;
     this.label10.Location = new System.Drawing.Point(514, 378);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(32, 13);
     this.label10.TabIndex = 269;
     this.label10.Text = "1.18";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(432, 373);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 19);
     this.label8.TabIndex = 267;
     this.label8.Text = "MAJ du jeu :";
     //
     // logInButton77
     //
     this.logInButton77.BackColor = System.Drawing.Color.Transparent;
     this.logInButton77.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton77.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton77.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton77.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton77.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton77.Location = new System.Drawing.Point(363, 308);
     this.logInButton77.Name = "logInButton77";
     this.logInButton77.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton77.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton77.Size = new System.Drawing.Size(302, 61);
     this.logInButton77.TabIndex = 265;
     this.logInButton77.Text = "BACK TO LOGIN FORM";
     this.logInButton77.Click += new System.EventHandler(this.logInButton77_Click);
     //
     // logInGroupBox1
     //
     this.logInGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.logInGroupBox1.BorderColour = System.Drawing.Color.Black;
     this.logInGroupBox1.Controls.Add(this.label5);
     this.logInGroupBox1.Controls.Add(this.label4);
     this.logInGroupBox1.Controls.Add(this.label2);
     this.logInGroupBox1.Controls.Add(this.label3);
     this.logInGroupBox1.Controls.Add(this.linkLabel4);
     this.logInGroupBox1.Controls.Add(this.linkLabel3);
     this.logInGroupBox1.Controls.Add(this.linkLabel2);
     this.logInGroupBox1.Controls.Add(this.linkLabel1);
     this.logInGroupBox1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInGroupBox1.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInGroupBox1.Location = new System.Drawing.Point(363, 145);
     this.logInGroupBox1.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox1.Name = "logInGroupBox1";
     this.logInGroupBox1.Size = new System.Drawing.Size(302, 157);
     this.logInGroupBox1.TabIndex = 264;
     this.logInGroupBox1.Text = "CONTACT                                                                    .     " +
     "  ";
     this.logInGroupBox1.TextColour = System.Drawing.Color.White;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(69, 129);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 13);
     this.label5.TabIndex = 7;
     this.label5.Text = ": @OasixFTW";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(123, 100);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(76, 13);
     this.label4.TabIndex = 6;
     this.label4.Text = ": RmK Oasix";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(94, 69);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(107, 13);
     this.label2.TabIndex = 5;
     this.label2.Text = ": Quentin Specter";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(67, 40);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 13);
     this.label3.TabIndex = 4;
     this.label3.Text = ": OasixFTW";
     //
     // linkLabel4
     //
     this.linkLabel4.AutoSize = true;
     this.linkLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel4.LinkColor = System.Drawing.Color.SandyBrown;
     this.linkLabel4.Location = new System.Drawing.Point(17, 97);
     this.linkLabel4.Name = "linkLabel4";
     this.linkLabel4.Size = new System.Drawing.Size(108, 16);
     this.linkLabel4.TabIndex = 3;
     this.linkLabel4.TabStop = true;
     this.linkLabel4.Text = "Realitygaming";
     this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
     //
     // linkLabel3
     //
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel3.LinkColor = System.Drawing.Color.SandyBrown;
     this.linkLabel3.Location = new System.Drawing.Point(17, 126);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(54, 16);
     this.linkLabel3.TabIndex = 2;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "Twitter";
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel2.LinkColor = System.Drawing.Color.SandyBrown;
     this.linkLabel2.Location = new System.Drawing.Point(17, 66);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(78, 16);
     this.linkLabel2.TabIndex = 1;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "Facebook";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.linkLabel1.LinkColor = System.Drawing.Color.SandyBrown;
     this.linkLabel1.Location = new System.Drawing.Point(17, 37);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(52, 16);
     this.linkLabel1.TabIndex = 0;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "Skype";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // pictureBox4
     //
     this.pictureBox4.BackgroundImage = global::ToolAW.Properties.Resources.LogoOASIX;
     this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.pictureBox4.Location = new System.Drawing.Point(107, 145);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(250, 246);
     this.pictureBox4.TabIndex = 263;
     this.pictureBox4.TabStop = false;
     //
     // LoginGroupbox
     //
     this.LoginGroupbox.BackColor = System.Drawing.Color.Transparent;
     this.LoginGroupbox.BorderColour = System.Drawing.Color.Black;
     this.LoginGroupbox.Controls.Add(this.metroButton2);
     this.LoginGroupbox.Controls.Add(this.metroButton1);
     this.LoginGroupbox.Controls.Add(this.metroButton8);
     this.LoginGroupbox.Controls.Add(this.labelConnect);
     this.LoginGroupbox.Controls.Add(this.progressBar1);
     this.LoginGroupbox.Controls.Add(this.logInRadioButton2);
     this.LoginGroupbox.Controls.Add(this.RadioCCAPI);
     this.LoginGroupbox.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LoginGroupbox.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.LoginGroupbox.Location = new System.Drawing.Point(107, 32);
     this.LoginGroupbox.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.LoginGroupbox.Name = "LoginGroupbox";
     this.LoginGroupbox.Size = new System.Drawing.Size(558, 107);
     this.LoginGroupbox.TabIndex = 262;
     this.LoginGroupbox.Text = "CONNECTION                                                                       " +
     "                                                                   .       ";
     this.LoginGroupbox.TextColour = System.Drawing.Color.White;
     //
     // metroButton2
     //
     this.metroButton2.Highlight = false;
     this.metroButton2.Location = new System.Drawing.Point(476, 43);
     this.metroButton2.Name = "metroButton2";
     this.metroButton2.Size = new System.Drawing.Size(70, 45);
     this.metroButton2.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroButton2.StyleManager = null;
     this.metroButton2.TabIndex = 418;
     this.metroButton2.Text = "Antiban ?";
     this.metroButton2.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroButton2.Visible = false;
     this.metroButton2.Click += new System.EventHandler(this.metroButton2_Click);
     //
     // metroButton1
     //
     this.metroButton1.Highlight = false;
     this.metroButton1.Location = new System.Drawing.Point(128, 40);
     this.metroButton1.Name = "metroButton1";
     this.metroButton1.Size = new System.Drawing.Size(106, 32);
     this.metroButton1.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroButton1.StyleManager = null;
     this.metroButton1.TabIndex = 417;
     this.metroButton1.Text = "ATTACH";
     this.metroButton1.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroButton1.Click += new System.EventHandler(this.metroButton1_Click);
     //
     // metroButton8
     //
     this.metroButton8.Highlight = false;
     this.metroButton8.Location = new System.Drawing.Point(16, 40);
     this.metroButton8.Name = "metroButton8";
     this.metroButton8.Size = new System.Drawing.Size(106, 32);
     this.metroButton8.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroButton8.StyleManager = null;
     this.metroButton8.TabIndex = 416;
     this.metroButton8.Text = "CONNECT";
     this.metroButton8.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroButton8.Click += new System.EventHandler(this.metroButton8_Click);
     //
     // labelConnect
     //
     this.labelConnect.AutoSize = true;
     this.labelConnect.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelConnect.ForeColor = System.Drawing.Color.Red;
     this.labelConnect.Location = new System.Drawing.Point(13, 81);
     this.labelConnect.Name = "labelConnect";
     this.labelConnect.Size = new System.Drawing.Size(92, 13);
     this.labelConnect.TabIndex = 262;
     this.labelConnect.Text = "Not Connected";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(341, 48);
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(124, 32);
     this.progressBar1.TabIndex = 261;
     //
     // logInRadioButton2
     //
     this.logInRadioButton2.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInRadioButton2.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInRadioButton2.Checked = false;
     this.logInRadioButton2.CheckedColour = System.Drawing.SystemColors.Highlight;
     this.logInRadioButton2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.logInRadioButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInRadioButton2.FontColour = System.Drawing.Color.White;
     this.logInRadioButton2.ForeColor = System.Drawing.SystemColors.Highlight;
     this.logInRadioButton2.HighlightColour = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(49)))), ((int)(((byte)(51)))));
     this.logInRadioButton2.Location = new System.Drawing.Point(243, 65);
     this.logInRadioButton2.Name = "logInRadioButton2";
     this.logInRadioButton2.Size = new System.Drawing.Size(84, 22);
     this.logInRadioButton2.TabIndex = 260;
     this.logInRadioButton2.Text = "TMAPI";
     this.logInRadioButton2.CheckedChanged += new LogIn_Theme_Dll_By_xVenoxi.LogInRadioButton.CheckedChangedEventHandler(this.logInRadioButton2_CheckedChanged);
     //
     // RadioCCAPI
     //
     this.RadioCCAPI.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.RadioCCAPI.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.RadioCCAPI.Checked = false;
     this.RadioCCAPI.CheckedColour = System.Drawing.SystemColors.Highlight;
     this.RadioCCAPI.Cursor = System.Windows.Forms.Cursors.Hand;
     this.RadioCCAPI.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RadioCCAPI.FontColour = System.Drawing.Color.White;
     this.RadioCCAPI.ForeColor = System.Drawing.SystemColors.Highlight;
     this.RadioCCAPI.HighlightColour = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(49)))), ((int)(((byte)(51)))));
     this.RadioCCAPI.Location = new System.Drawing.Point(243, 39);
     this.RadioCCAPI.Name = "RadioCCAPI";
     this.RadioCCAPI.Size = new System.Drawing.Size(84, 22);
     this.RadioCCAPI.TabIndex = 259;
     this.RadioCCAPI.Text = "CCAPI";
     this.RadioCCAPI.CheckedChanged += new LogIn_Theme_Dll_By_xVenoxi.LogInRadioButton.CheckedChangedEventHandler(this.RadioCCAPI_CheckedChanged);
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.tabPage1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage1.Controls.Add(this.numHOURS);
     this.tabPage1.Controls.Add(this.numMINUTES);
     this.tabPage1.Controls.Add(this.numDAY);
     this.tabPage1.Controls.Add(this.checkACC);
     this.tabPage1.Controls.Add(this.logInNumericACCURACY);
     this.tabPage1.Controls.Add(this.label7);
     this.tabPage1.Controls.Add(this.logInButton16);
     this.tabPage1.Controls.Add(this.checkTIME);
     this.tabPage1.Controls.Add(this.checkDEATHS);
     this.tabPage1.Controls.Add(this.checkKILLS);
     this.tabPage1.Controls.Add(this.checkGP);
     this.tabPage1.Controls.Add(this.checkLOSSES);
     this.tabPage1.Controls.Add(this.checkWINS);
     this.tabPage1.Controls.Add(this.checkPRESTIGE);
     this.tabPage1.Controls.Add(this.checkSCORE);
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.label13);
     this.tabPage1.Controls.Add(this.logInButton6);
     this.tabPage1.Controls.Add(this.logInButton5);
     this.tabPage1.Controls.Add(this.logInButton4);
     this.tabPage1.Controls.Add(this.logInButton3);
     this.tabPage1.Controls.Add(this.logInButton2);
     this.tabPage1.Controls.Add(this.logInCheckBoxUNALL);
     this.tabPage1.Controls.Add(this.logInNumericDEATHS);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.logInNumericKILLS);
     this.tabPage1.Controls.Add(this.label15);
     this.tabPage1.Controls.Add(this.logInNumericGAMESPLAYED);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.logInNumericLOSSES);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.logInNumericWINS);
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.logInNumericPRESTIGE);
     this.tabPage1.Controls.Add(this.label6);
     this.tabPage1.Controls.Add(this.logInCheckBoxLVL50);
     this.tabPage1.Controls.Add(this.logInNumericSCORE);
     this.tabPage1.Controls.Add(this.label68);
     this.tabPage1.Location = new System.Drawing.Point(4, 36);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(768, 424);
     this.tabPage1.TabIndex = 1;
     this.tabPage1.Text = "Stats";
     //
     // numHOURS
     //
     this.numHOURS.Location = new System.Drawing.Point(547, 59);
     this.numHOURS.Name = "numHOURS";
     this.numHOURS.Size = new System.Drawing.Size(45, 25);
     this.numHOURS.TabIndex = 310;
     //
     // numMINUTES
     //
     this.numMINUTES.Location = new System.Drawing.Point(598, 59);
     this.numMINUTES.Name = "numMINUTES";
     this.numMINUTES.Size = new System.Drawing.Size(45, 25);
     this.numMINUTES.TabIndex = 309;
     //
     // numDAY
     //
     this.numDAY.Location = new System.Drawing.Point(496, 59);
     this.numDAY.Name = "numDAY";
     this.numDAY.Size = new System.Drawing.Size(45, 25);
     this.numDAY.TabIndex = 308;
     //
     // checkACC
     //
     this.checkACC.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkACC.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkACC.Checked = false;
     this.checkACC.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkACC.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkACC.FontColour = System.Drawing.Color.White;
     this.checkACC.Location = new System.Drawing.Point(323, 270);
     this.checkACC.Name = "checkACC";
     this.checkACC.Size = new System.Drawing.Size(26, 22);
     this.checkACC.TabIndex = 283;
     //
     // logInNumericACCURACY
     //
     this.logInNumericACCURACY.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericACCURACY.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericACCURACY.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericACCURACY.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericACCURACY.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericACCURACY.Location = new System.Drawing.Point(180, 268);
     this.logInNumericACCURACY.Maximum = ((long)(9999999));
     this.logInNumericACCURACY.Minimum = ((long)(0));
     this.logInNumericACCURACY.Name = "logInNumericACCURACY";
     this.logInNumericACCURACY.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericACCURACY.Size = new System.Drawing.Size(137, 24);
     this.logInNumericACCURACY.TabIndex = 282;
     this.logInNumericACCURACY.Text = "logInNumericACCURACY";
     this.logInNumericACCURACY.Value = ((long)(0));
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(97, 272);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(79, 20);
     this.label7.TabIndex = 281;
     this.label7.Text = "Accuracy :";
     //
     // logInButton16
     //
     this.logInButton16.BackColor = System.Drawing.Color.Transparent;
     this.logInButton16.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton16.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton16.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton16.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton16.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton16.HoverColour = System.Drawing.Color.Gray;
     this.logInButton16.Location = new System.Drawing.Point(397, 204);
     this.logInButton16.Name = "logInButton16";
     this.logInButton16.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton16.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton16.Size = new System.Drawing.Size(281, 41);
     this.logInButton16.TabIndex = 280;
     this.logInButton16.Text = "Débloquer les armes elites";
     this.logInButton16.Click += new System.EventHandler(this.logInButton16_Click);
     //
     // checkTIME
     //
     this.checkTIME.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkTIME.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkTIME.Checked = false;
     this.checkTIME.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkTIME.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkTIME.FontColour = System.Drawing.Color.White;
     this.checkTIME.Location = new System.Drawing.Point(649, 61);
     this.checkTIME.Name = "checkTIME";
     this.checkTIME.Size = new System.Drawing.Size(26, 22);
     this.checkTIME.TabIndex = 279;
     //
     // checkDEATHS
     //
     this.checkDEATHS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkDEATHS.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkDEATHS.Checked = false;
     this.checkDEATHS.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkDEATHS.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkDEATHS.FontColour = System.Drawing.Color.White;
     this.checkDEATHS.Location = new System.Drawing.Point(323, 240);
     this.checkDEATHS.Name = "checkDEATHS";
     this.checkDEATHS.Size = new System.Drawing.Size(26, 22);
     this.checkDEATHS.TabIndex = 278;
     //
     // checkKILLS
     //
     this.checkKILLS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkKILLS.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkKILLS.Checked = false;
     this.checkKILLS.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkKILLS.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkKILLS.FontColour = System.Drawing.Color.White;
     this.checkKILLS.Location = new System.Drawing.Point(323, 211);
     this.checkKILLS.Name = "checkKILLS";
     this.checkKILLS.Size = new System.Drawing.Size(26, 22);
     this.checkKILLS.TabIndex = 277;
     //
     // checkGP
     //
     this.checkGP.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkGP.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkGP.Checked = false;
     this.checkGP.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkGP.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkGP.FontColour = System.Drawing.Color.White;
     this.checkGP.Location = new System.Drawing.Point(323, 180);
     this.checkGP.Name = "checkGP";
     this.checkGP.Size = new System.Drawing.Size(26, 22);
     this.checkGP.TabIndex = 276;
     //
     // checkLOSSES
     //
     this.checkLOSSES.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkLOSSES.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkLOSSES.Checked = false;
     this.checkLOSSES.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkLOSSES.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkLOSSES.FontColour = System.Drawing.Color.White;
     this.checkLOSSES.Location = new System.Drawing.Point(323, 150);
     this.checkLOSSES.Name = "checkLOSSES";
     this.checkLOSSES.Size = new System.Drawing.Size(26, 22);
     this.checkLOSSES.TabIndex = 275;
     //
     // checkWINS
     //
     this.checkWINS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkWINS.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkWINS.Checked = false;
     this.checkWINS.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkWINS.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkWINS.FontColour = System.Drawing.Color.White;
     this.checkWINS.Location = new System.Drawing.Point(323, 119);
     this.checkWINS.Name = "checkWINS";
     this.checkWINS.Size = new System.Drawing.Size(26, 22);
     this.checkWINS.TabIndex = 274;
     //
     // checkPRESTIGE
     //
     this.checkPRESTIGE.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkPRESTIGE.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkPRESTIGE.Checked = false;
     this.checkPRESTIGE.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkPRESTIGE.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkPRESTIGE.FontColour = System.Drawing.Color.White;
     this.checkPRESTIGE.Location = new System.Drawing.Point(323, 90);
     this.checkPRESTIGE.Name = "checkPRESTIGE";
     this.checkPRESTIGE.Size = new System.Drawing.Size(26, 22);
     this.checkPRESTIGE.TabIndex = 273;
     //
     // checkSCORE
     //
     this.checkSCORE.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.checkSCORE.BorderColour = System.Drawing.Color.SandyBrown;
     this.checkSCORE.Checked = false;
     this.checkSCORE.CheckedColour = System.Drawing.Color.SandyBrown;
     this.checkSCORE.Cursor = System.Windows.Forms.Cursors.Hand;
     this.checkSCORE.FontColour = System.Drawing.Color.White;
     this.checkSCORE.Location = new System.Drawing.Point(323, 60);
     this.checkSCORE.Name = "checkSCORE";
     this.checkSCORE.Size = new System.Drawing.Size(26, 22);
     this.checkSCORE.TabIndex = 272;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.labelSPM);
     this.groupBox1.Controls.Add(this.labelRatioWL);
     this.groupBox1.Controls.Add(this.labelRatioKD);
     this.groupBox1.Controls.Add(this.label17);
     this.groupBox1.Controls.Add(this.label29);
     this.groupBox1.Controls.Add(this.label28);
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(397, 90);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(281, 102);
     this.groupBox1.TabIndex = 271;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Stats infos";
     //
     // labelSPM
     //
     this.labelSPM.AutoSize = true;
     this.labelSPM.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelSPM.ForeColor = System.Drawing.Color.White;
     this.labelSPM.Location = new System.Drawing.Point(94, 74);
     this.labelSPM.Name = "labelSPM";
     this.labelSPM.Size = new System.Drawing.Size(10, 13);
     this.labelSPM.TabIndex = 13;
     this.labelSPM.Text = " ";
     //
     // labelRatioWL
     //
     this.labelRatioWL.AutoSize = true;
     this.labelRatioWL.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelRatioWL.ForeColor = System.Drawing.Color.White;
     this.labelRatioWL.Location = new System.Drawing.Point(94, 51);
     this.labelRatioWL.Name = "labelRatioWL";
     this.labelRatioWL.Size = new System.Drawing.Size(10, 13);
     this.labelRatioWL.TabIndex = 12;
     this.labelRatioWL.Text = " ";
     //
     // labelRatioKD
     //
     this.labelRatioKD.AutoSize = true;
     this.labelRatioKD.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelRatioKD.ForeColor = System.Drawing.Color.White;
     this.labelRatioKD.Location = new System.Drawing.Point(94, 28);
     this.labelRatioKD.Name = "labelRatioKD";
     this.labelRatioKD.Size = new System.Drawing.Size(10, 13);
     this.labelRatioKD.TabIndex = 11;
     this.labelRatioKD.Text = " ";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.ForeColor = System.Drawing.Color.SandyBrown;
     this.label17.Location = new System.Drawing.Point(49, 71);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(44, 19);
     this.label17.TabIndex = 10;
     this.label17.Text = "SPM :";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.ForeColor = System.Drawing.Color.SandyBrown;
     this.label29.Location = new System.Drawing.Point(17, 48);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(76, 19);
     this.label29.TabIndex = 9;
     this.label29.Text = "W/L Ratio :";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.ForeColor = System.Drawing.Color.SandyBrown;
     this.label28.Location = new System.Drawing.Point(19, 25);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(74, 19);
     this.label28.TabIndex = 8;
     this.label28.Text = "K/D Ratio :";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(393, 62);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(97, 20);
     this.label13.TabIndex = 270;
     this.label13.Text = "Time Played :";
     //
     // logInButton6
     //
     this.logInButton6.BackColor = System.Drawing.Color.Transparent;
     this.logInButton6.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton6.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton6.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton6.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton6.Location = new System.Drawing.Point(596, 272);
     this.logInButton6.Name = "logInButton6";
     this.logInButton6.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton6.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton6.Size = new System.Drawing.Size(82, 29);
     this.logInButton6.TabIndex = 269;
     this.logInButton6.Text = "HIGH STATS";
     this.logInButton6.Click += new System.EventHandler(this.logInButton6_Click);
     //
     // logInButton5
     //
     this.logInButton5.BackColor = System.Drawing.Color.Transparent;
     this.logInButton5.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton5.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton5.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton5.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton5.Location = new System.Drawing.Point(510, 272);
     this.logInButton5.Name = "logInButton5";
     this.logInButton5.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton5.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton5.Size = new System.Drawing.Size(82, 29);
     this.logInButton5.TabIndex = 268;
     this.logInButton5.Text = "LEGIT STATS";
     this.logInButton5.Click += new System.EventHandler(this.logInButton5_Click);
     //
     // logInButton4
     //
     this.logInButton4.BackColor = System.Drawing.Color.Transparent;
     this.logInButton4.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton4.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton4.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton4.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton4.HoverColour = System.Drawing.Color.Gray;
     this.logInButton4.Location = new System.Drawing.Point(397, 307);
     this.logInButton4.Name = "logInButton4";
     this.logInButton4.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton4.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton4.Size = new System.Drawing.Size(80, 48);
     this.logInButton4.TabIndex = 267;
     this.logInButton4.Text = "GET STATS";
     this.logInButton4.Click += new System.EventHandler(this.logInButton4_Click);
     //
     // logInButton3
     //
     this.logInButton3.BackColor = System.Drawing.Color.Transparent;
     this.logInButton3.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton3.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton3.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton3.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton3.Location = new System.Drawing.Point(397, 272);
     this.logInButton3.Name = "logInButton3";
     this.logInButton3.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton3.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton3.Size = new System.Drawing.Size(107, 29);
     this.logInButton3.TabIndex = 266;
     this.logInButton3.Text = "REVERSE BOOST";
     this.logInButton3.Click += new System.EventHandler(this.logInButton3_Click);
     //
     // logInButton2
     //
     this.logInButton2.BackColor = System.Drawing.Color.Transparent;
     this.logInButton2.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton2.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton2.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton2.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton2.HoverColour = System.Drawing.Color.Gray;
     this.logInButton2.Location = new System.Drawing.Point(483, 307);
     this.logInButton2.Name = "logInButton2";
     this.logInButton2.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton2.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton2.Size = new System.Drawing.Size(195, 48);
     this.logInButton2.TabIndex = 258;
     this.logInButton2.Text = "SET STATS";
     this.logInButton2.Click += new System.EventHandler(this.logInButton2_Click);
     //
     // logInCheckBoxUNALL
     //
     this.logInCheckBoxUNALL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInCheckBoxUNALL.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInCheckBoxUNALL.Checked = false;
     this.logInCheckBoxUNALL.CheckedColour = System.Drawing.Color.SandyBrown;
     this.logInCheckBoxUNALL.Cursor = System.Windows.Forms.Cursors.Hand;
     this.logInCheckBoxUNALL.FontColour = System.Drawing.Color.White;
     this.logInCheckBoxUNALL.Location = new System.Drawing.Point(180, 336);
     this.logInCheckBoxUNALL.Name = "logInCheckBoxUNALL";
     this.logInCheckBoxUNALL.Size = new System.Drawing.Size(87, 22);
     this.logInCheckBoxUNALL.TabIndex = 225;
     this.logInCheckBoxUNALL.Text = "Unlock All";
     this.logInCheckBoxUNALL.CheckedChanged += new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox.CheckedChangedEventHandler(this.logInCheckBoxUNALL_CheckedChanged);
     //
     // logInNumericDEATHS
     //
     this.logInNumericDEATHS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericDEATHS.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericDEATHS.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericDEATHS.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericDEATHS.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericDEATHS.Location = new System.Drawing.Point(180, 238);
     this.logInNumericDEATHS.Maximum = ((long)(9999999));
     this.logInNumericDEATHS.Minimum = ((long)(0));
     this.logInNumericDEATHS.Name = "logInNumericDEATHS";
     this.logInNumericDEATHS.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericDEATHS.Size = new System.Drawing.Size(137, 24);
     this.logInNumericDEATHS.TabIndex = 224;
     this.logInNumericDEATHS.Text = "logInNumeric1";
     this.logInNumericDEATHS.Value = ((long)(0));
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(112, 241);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(64, 20);
     this.label14.TabIndex = 223;
     this.label14.Text = "Deaths :";
     //
     // logInNumericKILLS
     //
     this.logInNumericKILLS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericKILLS.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericKILLS.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericKILLS.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericKILLS.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericKILLS.Location = new System.Drawing.Point(180, 208);
     this.logInNumericKILLS.Maximum = ((long)(9999999));
     this.logInNumericKILLS.Minimum = ((long)(0));
     this.logInNumericKILLS.Name = "logInNumericKILLS";
     this.logInNumericKILLS.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericKILLS.Size = new System.Drawing.Size(137, 24);
     this.logInNumericKILLS.TabIndex = 222;
     this.logInNumericKILLS.Text = "logInNumeric6";
     this.logInNumericKILLS.Value = ((long)(0));
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(132, 211);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(44, 20);
     this.label15.TabIndex = 221;
     this.label15.Text = "Kills :";
     //
     // logInNumericGAMESPLAYED
     //
     this.logInNumericGAMESPLAYED.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericGAMESPLAYED.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericGAMESPLAYED.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericGAMESPLAYED.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericGAMESPLAYED.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericGAMESPLAYED.Location = new System.Drawing.Point(180, 178);
     this.logInNumericGAMESPLAYED.Maximum = ((long)(9999999));
     this.logInNumericGAMESPLAYED.Minimum = ((long)(0));
     this.logInNumericGAMESPLAYED.Name = "logInNumericGAMESPLAYED";
     this.logInNumericGAMESPLAYED.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericGAMESPLAYED.Size = new System.Drawing.Size(137, 24);
     this.logInNumericGAMESPLAYED.TabIndex = 220;
     this.logInNumericGAMESPLAYED.Text = "logInNumeric1";
     this.logInNumericGAMESPLAYED.Value = ((long)(0));
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(64, 181);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(112, 20);
     this.label16.TabIndex = 219;
     this.label16.Text = "Games Played :";
     //
     // logInNumericLOSSES
     //
     this.logInNumericLOSSES.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericLOSSES.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericLOSSES.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericLOSSES.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericLOSSES.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericLOSSES.Location = new System.Drawing.Point(180, 148);
     this.logInNumericLOSSES.Maximum = ((long)(9999999));
     this.logInNumericLOSSES.Minimum = ((long)(0));
     this.logInNumericLOSSES.Name = "logInNumericLOSSES";
     this.logInNumericLOSSES.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericLOSSES.Size = new System.Drawing.Size(137, 24);
     this.logInNumericLOSSES.TabIndex = 218;
     this.logInNumericLOSSES.Text = "logInNumeric2";
     this.logInNumericLOSSES.Value = ((long)(0));
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(117, 151);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(59, 20);
     this.label11.TabIndex = 217;
     this.label11.Text = "Losses :";
     //
     // logInNumericWINS
     //
     this.logInNumericWINS.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericWINS.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericWINS.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericWINS.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericWINS.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericWINS.Location = new System.Drawing.Point(180, 118);
     this.logInNumericWINS.Maximum = ((long)(9999999));
     this.logInNumericWINS.Minimum = ((long)(0));
     this.logInNumericWINS.Name = "logInNumericWINS";
     this.logInNumericWINS.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericWINS.Size = new System.Drawing.Size(137, 24);
     this.logInNumericWINS.TabIndex = 216;
     this.logInNumericWINS.Text = "logInNumeric1";
     this.logInNumericWINS.Value = ((long)(0));
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.White;
     this.label12.Location = new System.Drawing.Point(126, 121);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(50, 20);
     this.label12.TabIndex = 215;
     this.label12.Text = "Wins :";
     //
     // logInNumericPRESTIGE
     //
     this.logInNumericPRESTIGE.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericPRESTIGE.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericPRESTIGE.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericPRESTIGE.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericPRESTIGE.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericPRESTIGE.Location = new System.Drawing.Point(180, 88);
     this.logInNumericPRESTIGE.Maximum = ((long)(9999999));
     this.logInNumericPRESTIGE.Minimum = ((long)(0));
     this.logInNumericPRESTIGE.Name = "logInNumericPRESTIGE";
     this.logInNumericPRESTIGE.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericPRESTIGE.Size = new System.Drawing.Size(137, 24);
     this.logInNumericPRESTIGE.TabIndex = 214;
     this.logInNumericPRESTIGE.Text = "logInNumeric1";
     this.logInNumericPRESTIGE.Value = ((long)(0));
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(104, 91);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(72, 20);
     this.label6.TabIndex = 213;
     this.label6.Text = "Prestige :";
     //
     // logInCheckBoxLVL50
     //
     this.logInCheckBoxLVL50.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInCheckBoxLVL50.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInCheckBoxLVL50.Checked = false;
     this.logInCheckBoxLVL50.CheckedColour = System.Drawing.Color.SandyBrown;
     this.logInCheckBoxLVL50.Cursor = System.Windows.Forms.Cursors.Hand;
     this.logInCheckBoxLVL50.FontColour = System.Drawing.Color.White;
     this.logInCheckBoxLVL50.Location = new System.Drawing.Point(180, 305);
     this.logInCheckBoxLVL50.Name = "logInCheckBoxLVL50";
     this.logInCheckBoxLVL50.Size = new System.Drawing.Size(87, 22);
     this.logInCheckBoxLVL50.TabIndex = 212;
     this.logInCheckBoxLVL50.Text = "Level 50";
     this.logInCheckBoxLVL50.CheckedChanged += new LogIn_Theme_Dll_By_xVenoxi.LogInCheckBox.CheckedChangedEventHandler(this.logInCheckBoxLVL50_CheckedChanged);
     //
     // logInNumericSCORE
     //
     this.logInNumericSCORE.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericSCORE.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericSCORE.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericSCORE.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericSCORE.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericSCORE.Location = new System.Drawing.Point(180, 58);
     this.logInNumericSCORE.Maximum = ((long)(9999999999999999));
     this.logInNumericSCORE.Minimum = ((long)(0));
     this.logInNumericSCORE.Name = "logInNumericSCORE";
     this.logInNumericSCORE.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericSCORE.Size = new System.Drawing.Size(137, 24);
     this.logInNumericSCORE.TabIndex = 197;
     this.logInNumericSCORE.Text = "logInNumeric1";
     this.logInNumericSCORE.Value = ((long)(0));
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.BackColor = System.Drawing.Color.Transparent;
     this.label68.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label68.ForeColor = System.Drawing.Color.White;
     this.label68.Location = new System.Drawing.Point(121, 61);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(55, 20);
     this.label68.TabIndex = 196;
     this.label68.Text = "Score :";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.tabPage2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage2.Controls.Add(this.logInGroupBox4);
     this.tabPage2.Controls.Add(this.logInGroupBox3);
     this.tabPage2.Controls.Add(this.logInGroupBox25);
     this.tabPage2.Controls.Add(this.logInGroupBox2);
     this.tabPage2.Location = new System.Drawing.Point(4, 36);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(768, 424);
     this.tabPage2.TabIndex = 2;
     this.tabPage2.Text = "Custom Classes & Name";
     //
     // logInGroupBox4
     //
     this.logInGroupBox4.BackColor = System.Drawing.Color.Transparent;
     this.logInGroupBox4.BorderColour = System.Drawing.Color.Black;
     this.logInGroupBox4.Controls.Add(this.textBoxCLANTAG);
     this.logInGroupBox4.Controls.Add(this.logInButton1);
     this.logInGroupBox4.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInGroupBox4.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInGroupBox4.Location = new System.Drawing.Point(483, 111);
     this.logInGroupBox4.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox4.Name = "logInGroupBox4";
     this.logInGroupBox4.Size = new System.Drawing.Size(273, 18);
     this.logInGroupBox4.TabIndex = 272;
     this.logInGroupBox4.Text = "CLANTAG CHANGER                                                                  " +
     " .       ";
     this.logInGroupBox4.TextColour = System.Drawing.Color.White;
     this.logInGroupBox4.Visible = false;
     //
     // textBoxCLANTAG
     //
     this.textBoxCLANTAG.BackColor = System.Drawing.Color.Transparent;
     this.textBoxCLANTAG.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.textBoxCLANTAG.BorderColour = System.Drawing.SystemColors.Highlight;
     this.textBoxCLANTAG.ForeColor = System.Drawing.SystemColors.Highlight;
     this.textBoxCLANTAG.Location = new System.Drawing.Point(7, 51);
     this.textBoxCLANTAG.MaxLength = 32767;
     this.textBoxCLANTAG.Multiline = false;
     this.textBoxCLANTAG.Name = "textBoxCLANTAG";
     this.textBoxCLANTAG.ReadOnly = false;
     this.textBoxCLANTAG.Size = new System.Drawing.Size(195, 29);
     this.textBoxCLANTAG.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.textBoxCLANTAG.TabIndex = 270;
     this.textBoxCLANTAG.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBoxCLANTAG.TextColour = System.Drawing.SystemColors.Highlight;
     this.textBoxCLANTAG.UseSystemPasswordChar = false;
     //
     // logInButton1
     //
     this.logInButton1.BackColor = System.Drawing.Color.Transparent;
     this.logInButton1.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton1.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton1.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton1.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton1.HoverColour = System.Drawing.Color.Gray;
     this.logInButton1.Location = new System.Drawing.Point(208, 51);
     this.logInButton1.Name = "logInButton1";
     this.logInButton1.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton1.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton1.Size = new System.Drawing.Size(58, 29);
     this.logInButton1.TabIndex = 271;
     this.logInButton1.Text = "SET";
     this.logInButton1.Click += new System.EventHandler(this.logInButton1_Click);
     //
     // logInGroupBox3
     //
     this.logInGroupBox3.BackColor = System.Drawing.Color.Transparent;
     this.logInGroupBox3.BorderColour = System.Drawing.Color.Black;
     this.logInGroupBox3.Controls.Add(this.logInButton9);
     this.logInGroupBox3.Controls.Add(this.logInNormalTextBox1);
     this.logInGroupBox3.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInGroupBox3.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInGroupBox3.Location = new System.Drawing.Point(487, 234);
     this.logInGroupBox3.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox3.Name = "logInGroupBox3";
     this.logInGroupBox3.Size = new System.Drawing.Size(273, 77);
     this.logInGroupBox3.TabIndex = 268;
     this.logInGroupBox3.Text = "NAME CHANGER                                                                   . " +
     "      ";
     this.logInGroupBox3.TextColour = System.Drawing.Color.White;
     //
     // logInButton9
     //
     this.logInButton9.BackColor = System.Drawing.Color.Transparent;
     this.logInButton9.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton9.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton9.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton9.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton9.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton9.HoverColour = System.Drawing.Color.Gray;
     this.logInButton9.Location = new System.Drawing.Point(208, 37);
     this.logInButton9.Name = "logInButton9";
     this.logInButton9.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton9.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton9.Size = new System.Drawing.Size(58, 29);
     this.logInButton9.TabIndex = 269;
     this.logInButton9.Text = "SET";
     this.logInButton9.Click += new System.EventHandler(this.logInButton9_Click);
     //
     // logInNormalTextBox1
     //
     this.logInNormalTextBox1.BackColor = System.Drawing.Color.Transparent;
     this.logInNormalTextBox1.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNormalTextBox1.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNormalTextBox1.ForeColor = System.Drawing.SystemColors.Highlight;
     this.logInNormalTextBox1.Location = new System.Drawing.Point(7, 37);
     this.logInNormalTextBox1.MaxLength = 32767;
     this.logInNormalTextBox1.Multiline = false;
     this.logInNormalTextBox1.Name = "logInNormalTextBox1";
     this.logInNormalTextBox1.ReadOnly = false;
     this.logInNormalTextBox1.Size = new System.Drawing.Size(195, 29);
     this.logInNormalTextBox1.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.logInNormalTextBox1.TabIndex = 207;
     this.logInNormalTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.logInNormalTextBox1.TextColour = System.Drawing.SystemColors.Highlight;
     this.logInNormalTextBox1.UseSystemPasswordChar = false;
     //
     // logInGroupBox25
     //
     this.logInGroupBox25.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInGroupBox25.Controls.Add(this.label69);
     this.logInGroupBox25.Controls.Add(this.label83);
     this.logInGroupBox25.Controls.Add(this.label84);
     this.logInGroupBox25.Controls.Add(this.label85);
     this.logInGroupBox25.Controls.Add(this.label86);
     this.logInGroupBox25.Controls.Add(this.label95);
     this.logInGroupBox25.Controls.Add(this.label103);
     this.logInGroupBox25.Controls.Add(this.label104);
     this.logInGroupBox25.Controls.Add(this.label105);
     this.logInGroupBox25.Controls.Add(this.label106);
     this.logInGroupBox25.Controls.Add(this.label107);
     this.logInGroupBox25.Controls.Add(this.label108);
     this.logInGroupBox25.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.logInGroupBox25.HeaderColour = System.Drawing.Color.SandyBrown;
     this.logInGroupBox25.Location = new System.Drawing.Point(9, 29);
     this.logInGroupBox25.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox25.Name = "logInGroupBox25";
     this.logInGroupBox25.Size = new System.Drawing.Size(747, 71);
     this.logInGroupBox25.TabIndex = 267;
     this.logInGroupBox25.Text = "COLOURS                                                                          " +
     "                                                                                " +
     "                             .";
     this.logInGroupBox25.TextColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.BackColor = System.Drawing.Color.Transparent;
     this.label69.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label69.ForeColor = System.Drawing.Color.White;
     this.label69.Location = new System.Drawing.Point(127, 36);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(49, 20);
     this.label69.TabIndex = 230;
     this.label69.Text = "^3   =";
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.BackColor = System.Drawing.Color.Transparent;
     this.label83.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label83.ForeColor = System.Drawing.Color.Lime;
     this.label83.Location = new System.Drawing.Point(458, 33);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(50, 20);
     this.label83.TabIndex = 221;
     this.label83.Text = "Green";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.BackColor = System.Drawing.Color.Transparent;
     this.label84.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label84.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label84.Location = new System.Drawing.Point(582, 33);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(39, 20);
     this.label84.TabIndex = 222;
     this.label84.Text = "Blue";
     //
     // label85
     //
     this.label85.AutoSize = true;
     this.label85.BackColor = System.Drawing.Color.Transparent;
     this.label85.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label85.ForeColor = System.Drawing.Color.Aqua;
     this.label85.Location = new System.Drawing.Point(313, 36);
     this.label85.Name = "label85";
     this.label85.Size = new System.Drawing.Size(77, 20);
     this.label85.TabIndex = 223;
     this.label85.Text = "Light Blue";
     //
     // label86
     //
     this.label86.AutoSize = true;
     this.label86.BackColor = System.Drawing.Color.Transparent;
     this.label86.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label86.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.label86.Location = new System.Drawing.Point(693, 33);
     this.label86.Name = "label86";
     this.label86.Size = new System.Drawing.Size(39, 20);
     this.label86.TabIndex = 224;
     this.label86.Text = "Pink";
     //
     // label95
     //
     this.label95.AutoSize = true;
     this.label95.BackColor = System.Drawing.Color.Transparent;
     this.label95.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label95.ForeColor = System.Drawing.Color.Yellow;
     this.label95.Location = new System.Drawing.Point(184, 33);
     this.label95.Name = "label95";
     this.label95.Size = new System.Drawing.Size(53, 20);
     this.label95.TabIndex = 226;
     this.label95.Text = "Yellow";
     //
     // label103
     //
     this.label103.AutoSize = true;
     this.label103.BackColor = System.Drawing.Color.Transparent;
     this.label103.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label103.ForeColor = System.Drawing.Color.White;
     this.label103.Location = new System.Drawing.Point(256, 36);
     this.label103.Name = "label103";
     this.label103.Size = new System.Drawing.Size(49, 20);
     this.label103.TabIndex = 233;
     this.label103.Text = "^5   =";
     //
     // label104
     //
     this.label104.AutoSize = true;
     this.label104.BackColor = System.Drawing.Color.Transparent;
     this.label104.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label104.ForeColor = System.Drawing.Color.Red;
     this.label104.Location = new System.Drawing.Point(65, 36);
     this.label104.Name = "label104";
     this.label104.Size = new System.Drawing.Size(35, 20);
     this.label104.TabIndex = 227;
     this.label104.Text = "Red";
     //
     // label105
     //
     this.label105.AutoSize = true;
     this.label105.BackColor = System.Drawing.Color.Transparent;
     this.label105.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label105.ForeColor = System.Drawing.Color.White;
     this.label105.Location = new System.Drawing.Point(636, 33);
     this.label105.Name = "label105";
     this.label105.Size = new System.Drawing.Size(49, 20);
     this.label105.TabIndex = 232;
     this.label105.Text = "^6   =";
     //
     // label106
     //
     this.label106.AutoSize = true;
     this.label106.BackColor = System.Drawing.Color.Transparent;
     this.label106.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label106.ForeColor = System.Drawing.Color.White;
     this.label106.Location = new System.Drawing.Point(401, 36);
     this.label106.Name = "label106";
     this.label106.Size = new System.Drawing.Size(49, 20);
     this.label106.TabIndex = 228;
     this.label106.Text = "^2   =";
     //
     // label107
     //
     this.label107.AutoSize = true;
     this.label107.BackColor = System.Drawing.Color.Transparent;
     this.label107.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label107.ForeColor = System.Drawing.Color.White;
     this.label107.Location = new System.Drawing.Point(525, 33);
     this.label107.Name = "label107";
     this.label107.Size = new System.Drawing.Size(50, 20);
     this.label107.TabIndex = 231;
     this.label107.Text = "^4   =";
     //
     // label108
     //
     this.label108.AutoSize = true;
     this.label108.BackColor = System.Drawing.Color.Transparent;
     this.label108.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold);
     this.label108.ForeColor = System.Drawing.Color.White;
     this.label108.Location = new System.Drawing.Point(8, 36);
     this.label108.Name = "label108";
     this.label108.Size = new System.Drawing.Size(47, 20);
     this.label108.TabIndex = 229;
     this.label108.Text = "^1   =";
     //
     // logInGroupBox2
     //
     this.logInGroupBox2.BackColor = System.Drawing.Color.Transparent;
     this.logInGroupBox2.BorderColour = System.Drawing.Color.Black;
     this.logInGroupBox2.Controls.Add(this.logInButton8);
     this.logInGroupBox2.Controls.Add(this.Classe6);
     this.logInGroupBox2.Controls.Add(this.label27);
     this.logInGroupBox2.Controls.Add(this.Classe10);
     this.logInGroupBox2.Controls.Add(this.label24);
     this.logInGroupBox2.Controls.Add(this.label25);
     this.logInGroupBox2.Controls.Add(this.logInButton7);
     this.logInGroupBox2.Controls.Add(this.Classe9);
     this.logInGroupBox2.Controls.Add(this.textBox24);
     this.logInGroupBox2.Controls.Add(this.Classe7);
     this.logInGroupBox2.Controls.Add(this.label26);
     this.logInGroupBox2.Controls.Add(this.Classe8);
     this.logInGroupBox2.Controls.Add(this.label22);
     this.logInGroupBox2.Controls.Add(this.Classe5);
     this.logInGroupBox2.Controls.Add(this.label23);
     this.logInGroupBox2.Controls.Add(this.Classe4);
     this.logInGroupBox2.Controls.Add(this.label20);
     this.logInGroupBox2.Controls.Add(this.Classe3);
     this.logInGroupBox2.Controls.Add(this.label21);
     this.logInGroupBox2.Controls.Add(this.Classe2);
     this.logInGroupBox2.Controls.Add(this.label19);
     this.logInGroupBox2.Controls.Add(this.Classe1);
     this.logInGroupBox2.Controls.Add(this.label18);
     this.logInGroupBox2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInGroupBox2.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInGroupBox2.Location = new System.Drawing.Point(9, 131);
     this.logInGroupBox2.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox2.Name = "logInGroupBox2";
     this.logInGroupBox2.Size = new System.Drawing.Size(468, 279);
     this.logInGroupBox2.TabIndex = 263;
     this.logInGroupBox2.Text = resources.GetString("logInGroupBox2.Text");
     this.logInGroupBox2.TextColour = System.Drawing.Color.White;
     //
     // logInButton8
     //
     this.logInButton8.BackColor = System.Drawing.Color.Transparent;
     this.logInButton8.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton8.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton8.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton8.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton8.HoverColour = System.Drawing.Color.Gray;
     this.logInButton8.Location = new System.Drawing.Point(11, 249);
     this.logInButton8.Name = "logInButton8";
     this.logInButton8.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton8.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton8.Size = new System.Drawing.Size(442, 27);
     this.logInButton8.TabIndex = 258;
     this.logInButton8.Text = "SET CLASSES NAMES";
     this.logInButton8.Click += new System.EventHandler(this.logInButton8_Click);
     //
     // Classe6
     //
     this.Classe6.BackColor = System.Drawing.Color.Transparent;
     this.Classe6.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe6.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe6.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe6.Location = new System.Drawing.Point(308, 70);
     this.Classe6.MaxLength = 32767;
     this.Classe6.Multiline = false;
     this.Classe6.Name = "Classe6";
     this.Classe6.ReadOnly = false;
     this.Classe6.Size = new System.Drawing.Size(145, 29);
     this.Classe6.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe6.TabIndex = 222;
     this.Classe6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe6.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe6.UseSystemPasswordChar = false;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.BackColor = System.Drawing.Color.Transparent;
     this.label27.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.ForeColor = System.Drawing.Color.White;
     this.label27.Location = new System.Drawing.Point(243, 75);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(62, 20);
     this.label27.TabIndex = 223;
     this.label27.Text = "Class 6 :";
     //
     // Classe10
     //
     this.Classe10.BackColor = System.Drawing.Color.Transparent;
     this.Classe10.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe10.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe10.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe10.Location = new System.Drawing.Point(308, 206);
     this.Classe10.MaxLength = 32767;
     this.Classe10.Multiline = false;
     this.Classe10.Name = "Classe10";
     this.Classe10.ReadOnly = false;
     this.Classe10.Size = new System.Drawing.Size(145, 29);
     this.Classe10.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe10.TabIndex = 220;
     this.Classe10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe10.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe10.UseSystemPasswordChar = false;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.BackColor = System.Drawing.Color.Transparent;
     this.label24.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.ForeColor = System.Drawing.Color.White;
     this.label24.Location = new System.Drawing.Point(236, 211);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(68, 20);
     this.label24.TabIndex = 221;
     this.label24.Text = "Class 10 :";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.BackColor = System.Drawing.Color.Transparent;
     this.label25.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.White;
     this.label25.Location = new System.Drawing.Point(241, 177);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(62, 20);
     this.label25.TabIndex = 219;
     this.label25.Text = "Class 9 :";
     //
     // logInButton7
     //
     this.logInButton7.BackColor = System.Drawing.Color.Transparent;
     this.logInButton7.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton7.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton7.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton7.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton7.Location = new System.Drawing.Point(225, 35);
     this.logInButton7.Name = "logInButton7";
     this.logInButton7.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton7.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton7.Size = new System.Drawing.Size(228, 29);
     this.logInButton7.TabIndex = 266;
     this.logInButton7.Text = "Pre-Set Colours Names Classes";
     this.logInButton7.Click += new System.EventHandler(this.logInButton7_Click);
     //
     // Classe9
     //
     this.Classe9.BackColor = System.Drawing.Color.Transparent;
     this.Classe9.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe9.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe9.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe9.Location = new System.Drawing.Point(308, 172);
     this.Classe9.MaxLength = 32767;
     this.Classe9.Multiline = false;
     this.Classe9.Name = "Classe9";
     this.Classe9.ReadOnly = false;
     this.Classe9.Size = new System.Drawing.Size(145, 29);
     this.Classe9.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe9.TabIndex = 218;
     this.Classe9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe9.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe9.UseSystemPasswordChar = false;
     //
     // textBox24
     //
     this.textBox24.BackColor = System.Drawing.Color.Transparent;
     this.textBox24.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.textBox24.BorderColour = System.Drawing.SystemColors.Highlight;
     this.textBox24.ForeColor = System.Drawing.SystemColors.Highlight;
     this.textBox24.Location = new System.Drawing.Point(15, 35);
     this.textBox24.MaxLength = 32767;
     this.textBox24.Multiline = false;
     this.textBox24.Name = "textBox24";
     this.textBox24.ReadOnly = false;
     this.textBox24.Size = new System.Drawing.Size(204, 29);
     this.textBox24.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.textBox24.TabIndex = 206;
     this.textBox24.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBox24.TextColour = System.Drawing.SystemColors.Highlight;
     this.textBox24.UseSystemPasswordChar = false;
     //
     // Classe7
     //
     this.Classe7.BackColor = System.Drawing.Color.Transparent;
     this.Classe7.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe7.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe7.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe7.Location = new System.Drawing.Point(308, 104);
     this.Classe7.MaxLength = 32767;
     this.Classe7.Multiline = false;
     this.Classe7.Name = "Classe7";
     this.Classe7.ReadOnly = false;
     this.Classe7.Size = new System.Drawing.Size(145, 29);
     this.Classe7.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe7.TabIndex = 214;
     this.Classe7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe7.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe7.UseSystemPasswordChar = false;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.BackColor = System.Drawing.Color.Transparent;
     this.label26.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.ForeColor = System.Drawing.Color.White;
     this.label26.Location = new System.Drawing.Point(242, 143);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(62, 20);
     this.label26.TabIndex = 217;
     this.label26.Text = "Class 8 :";
     //
     // Classe8
     //
     this.Classe8.BackColor = System.Drawing.Color.Transparent;
     this.Classe8.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe8.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe8.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe8.Location = new System.Drawing.Point(308, 138);
     this.Classe8.MaxLength = 32767;
     this.Classe8.Multiline = false;
     this.Classe8.Name = "Classe8";
     this.Classe8.ReadOnly = false;
     this.Classe8.Size = new System.Drawing.Size(145, 29);
     this.Classe8.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe8.TabIndex = 216;
     this.Classe8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe8.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe8.UseSystemPasswordChar = false;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.label22.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.ForeColor = System.Drawing.Color.White;
     this.label22.Location = new System.Drawing.Point(242, 109);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 20);
     this.label22.TabIndex = 215;
     this.label22.Text = "Class 7 :";
     //
     // Classe5
     //
     this.Classe5.BackColor = System.Drawing.Color.Transparent;
     this.Classe5.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe5.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe5.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe5.Location = new System.Drawing.Point(74, 207);
     this.Classe5.MaxLength = 32767;
     this.Classe5.Multiline = false;
     this.Classe5.Name = "Classe5";
     this.Classe5.ReadOnly = false;
     this.Classe5.Size = new System.Drawing.Size(145, 29);
     this.Classe5.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe5.TabIndex = 212;
     this.Classe5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe5.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe5.UseSystemPasswordChar = false;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.BackColor = System.Drawing.Color.Transparent;
     this.label23.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.ForeColor = System.Drawing.Color.White;
     this.label23.Location = new System.Drawing.Point(8, 212);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(62, 20);
     this.label23.TabIndex = 213;
     this.label23.Text = "Class 5 :";
     //
     // Classe4
     //
     this.Classe4.BackColor = System.Drawing.Color.Transparent;
     this.Classe4.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe4.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe4.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe4.Location = new System.Drawing.Point(74, 173);
     this.Classe4.MaxLength = 32767;
     this.Classe4.Multiline = false;
     this.Classe4.Name = "Classe4";
     this.Classe4.ReadOnly = false;
     this.Classe4.Size = new System.Drawing.Size(145, 29);
     this.Classe4.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe4.TabIndex = 210;
     this.Classe4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe4.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe4.UseSystemPasswordChar = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(7, 178);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(63, 20);
     this.label20.TabIndex = 211;
     this.label20.Text = "Class 4 :";
     //
     // Classe3
     //
     this.Classe3.BackColor = System.Drawing.Color.Transparent;
     this.Classe3.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe3.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe3.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe3.Location = new System.Drawing.Point(74, 139);
     this.Classe3.MaxLength = 32767;
     this.Classe3.Multiline = false;
     this.Classe3.Name = "Classe3";
     this.Classe3.ReadOnly = false;
     this.Classe3.Size = new System.Drawing.Size(145, 29);
     this.Classe3.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe3.TabIndex = 208;
     this.Classe3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe3.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe3.UseSystemPasswordChar = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(9, 144);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(62, 20);
     this.label21.TabIndex = 209;
     this.label21.Text = "Class 3 :";
     //
     // Classe2
     //
     this.Classe2.BackColor = System.Drawing.Color.Transparent;
     this.Classe2.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe2.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe2.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe2.Location = new System.Drawing.Point(74, 105);
     this.Classe2.MaxLength = 32767;
     this.Classe2.Multiline = false;
     this.Classe2.Name = "Classe2";
     this.Classe2.ReadOnly = false;
     this.Classe2.Size = new System.Drawing.Size(145, 29);
     this.Classe2.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe2.TabIndex = 206;
     this.Classe2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe2.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe2.UseSystemPasswordChar = false;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(9, 110);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(62, 20);
     this.label19.TabIndex = 207;
     this.label19.Text = "Class 2 :";
     //
     // Classe1
     //
     this.Classe1.BackColor = System.Drawing.Color.Transparent;
     this.Classe1.BackgroundColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.Classe1.BorderColour = System.Drawing.SystemColors.Highlight;
     this.Classe1.ForeColor = System.Drawing.SystemColors.Highlight;
     this.Classe1.Location = new System.Drawing.Point(74, 71);
     this.Classe1.MaxLength = 32767;
     this.Classe1.Multiline = false;
     this.Classe1.Name = "Classe1";
     this.Classe1.ReadOnly = false;
     this.Classe1.Size = new System.Drawing.Size(145, 29);
     this.Classe1.Style = LogIn_Theme_Dll_By_xVenoxi.LogInNormalTextBox.Styles.NotRounded;
     this.Classe1.TabIndex = 204;
     this.Classe1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.Classe1.TextColour = System.Drawing.SystemColors.Highlight;
     this.Classe1.UseSystemPasswordChar = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(11, 76);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(60, 20);
     this.label18.TabIndex = 205;
     this.label18.Text = "Class 1 :";
     //
     // tabPage3
     //
     this.tabPage3.AccessibleDescription = "";
     this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.tabPage3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage3.Controls.Add(this.logInButton13);
     this.tabPage3.Controls.Add(this.listView1);
     this.tabPage3.Controls.Add(this.logInGroupBox5);
     this.tabPage3.Location = new System.Drawing.Point(4, 36);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(768, 424);
     this.tabPage3.TabIndex = 3;
     this.tabPage3.Text = "Mods";
     //
     // logInButton13
     //
     this.logInButton13.BackColor = System.Drawing.Color.Transparent;
     this.logInButton13.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton13.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton13.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton13.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton13.Location = new System.Drawing.Point(22, 43);
     this.logInButton13.Name = "logInButton13";
     this.logInButton13.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton13.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton13.Size = new System.Drawing.Size(10, 29);
     this.logInButton13.TabIndex = 272;
     this.logInButton13.Text = "Refresh";
     this.logInButton13.Visible = false;
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.ClientNumber,
     this.ClientName});
     this.listView1.FullRowSelect = true;
     this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem15,
     listViewItem16,
     listViewItem17,
     listViewItem18,
     listViewItem19,
     listViewItem20,
     listViewItem21,
     listViewItem22,
     listViewItem23,
     listViewItem24,
     listViewItem25,
     listViewItem26,
     listViewItem27,
     listViewItem28});
     this.listView1.Location = new System.Drawing.Point(22, 91);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(10, 291);
     this.listView1.TabIndex = 271;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.Visible = false;
     //
     // ClientNumber
     //
     this.ClientNumber.Text = "#";
     this.ClientNumber.Width = 30;
     //
     // ClientName
     //
     this.ClientName.Text = "Client";
     this.ClientName.Width = 150;
     //
     // logInGroupBox5
     //
     this.logInGroupBox5.BackColor = System.Drawing.Color.Transparent;
     this.logInGroupBox5.BorderColour = System.Drawing.Color.Black;
     this.logInGroupBox5.Controls.Add(this.metroToggle8);
     this.logInGroupBox5.Controls.Add(this.label30);
     this.logInGroupBox5.Controls.Add(this.metroToggle6);
     this.logInGroupBox5.Controls.Add(this.metroToggle5);
     this.logInGroupBox5.Controls.Add(this.metroToggle4);
     this.logInGroupBox5.Controls.Add(this.metroToggle3);
     this.logInGroupBox5.Controls.Add(this.metroToggle2);
     this.logInGroupBox5.Controls.Add(this.metroToggle1);
     this.logInGroupBox5.Controls.Add(this.label33);
     this.logInGroupBox5.Controls.Add(this.label36);
     this.logInGroupBox5.Controls.Add(this.label37);
     this.logInGroupBox5.Controls.Add(this.label38);
     this.logInGroupBox5.Controls.Add(this.label39);
     this.logInGroupBox5.Controls.Add(this.label40);
     this.logInGroupBox5.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInGroupBox5.HeaderColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInGroupBox5.Location = new System.Drawing.Point(239, 44);
     this.logInGroupBox5.MainColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInGroupBox5.Name = "logInGroupBox5";
     this.logInGroupBox5.Size = new System.Drawing.Size(277, 306);
     this.logInGroupBox5.TabIndex = 270;
     this.logInGroupBox5.Text = "NO HOST                                                                   .      " +
     " ";
     this.logInGroupBox5.TextColour = System.Drawing.Color.White;
     //
     // metroToggle8
     //
     this.metroToggle8.AutoSize = true;
     this.metroToggle8.CustomBackground = false;
     this.metroToggle8.DisplayStatus = true;
     this.metroToggle8.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle8.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle8.Location = new System.Drawing.Point(95, 252);
     this.metroToggle8.Name = "metroToggle8";
     this.metroToggle8.Size = new System.Drawing.Size(80, 25);
     this.metroToggle8.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle8.StyleManager = null;
     this.metroToggle8.TabIndex = 281;
     this.metroToggle8.Text = "Off";
     this.metroToggle8.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle8.UseStyleColors = false;
     this.metroToggle8.UseVisualStyleBackColor = true;
     this.metroToggle8.CheckedChanged += new System.EventHandler(this.metroToggle8_CheckedChanged);
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.ForeColor = System.Drawing.Color.SandyBrown;
     this.label30.Location = new System.Drawing.Point(98, 232);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(72, 16);
     this.label30.TabIndex = 279;
     this.label30.Text = "Wallhack";
     //
     // metroToggle6
     //
     this.metroToggle6.AutoSize = true;
     this.metroToggle6.CustomBackground = false;
     this.metroToggle6.DisplayStatus = true;
     this.metroToggle6.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle6.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle6.Location = new System.Drawing.Point(158, 189);
     this.metroToggle6.Name = "metroToggle6";
     this.metroToggle6.Size = new System.Drawing.Size(80, 25);
     this.metroToggle6.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle6.StyleManager = null;
     this.metroToggle6.TabIndex = 278;
     this.metroToggle6.Text = "Off";
     this.metroToggle6.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle6.UseStyleColors = false;
     this.metroToggle6.UseVisualStyleBackColor = true;
     this.metroToggle6.CheckedChanged += new System.EventHandler(this.metroToggle6_CheckedChanged);
     //
     // metroToggle5
     //
     this.metroToggle5.AutoSize = true;
     this.metroToggle5.CustomBackground = false;
     this.metroToggle5.DisplayStatus = true;
     this.metroToggle5.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle5.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle5.Location = new System.Drawing.Point(31, 188);
     this.metroToggle5.Name = "metroToggle5";
     this.metroToggle5.Size = new System.Drawing.Size(80, 25);
     this.metroToggle5.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle5.StyleManager = null;
     this.metroToggle5.TabIndex = 277;
     this.metroToggle5.Text = "Off";
     this.metroToggle5.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle5.UseStyleColors = false;
     this.metroToggle5.UseVisualStyleBackColor = true;
     this.metroToggle5.CheckedChanged += new System.EventHandler(this.metroToggle5_CheckedChanged);
     //
     // metroToggle4
     //
     this.metroToggle4.AutoSize = true;
     this.metroToggle4.CustomBackground = false;
     this.metroToggle4.DisplayStatus = true;
     this.metroToggle4.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle4.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle4.Location = new System.Drawing.Point(158, 127);
     this.metroToggle4.Name = "metroToggle4";
     this.metroToggle4.Size = new System.Drawing.Size(80, 25);
     this.metroToggle4.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle4.StyleManager = null;
     this.metroToggle4.TabIndex = 276;
     this.metroToggle4.Text = "Off";
     this.metroToggle4.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle4.UseStyleColors = false;
     this.metroToggle4.UseVisualStyleBackColor = true;
     this.metroToggle4.CheckedChanged += new System.EventHandler(this.metroToggle4_CheckedChanged);
     //
     // metroToggle3
     //
     this.metroToggle3.AutoSize = true;
     this.metroToggle3.CustomBackground = false;
     this.metroToggle3.DisplayStatus = true;
     this.metroToggle3.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle3.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle3.Location = new System.Drawing.Point(31, 127);
     this.metroToggle3.Name = "metroToggle3";
     this.metroToggle3.Size = new System.Drawing.Size(80, 25);
     this.metroToggle3.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle3.StyleManager = null;
     this.metroToggle3.TabIndex = 275;
     this.metroToggle3.Text = "Off";
     this.metroToggle3.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle3.UseStyleColors = false;
     this.metroToggle3.UseVisualStyleBackColor = true;
     this.metroToggle3.CheckedChanged += new System.EventHandler(this.metroToggle3_CheckedChanged);
     //
     // metroToggle2
     //
     this.metroToggle2.AutoSize = true;
     this.metroToggle2.CustomBackground = false;
     this.metroToggle2.DisplayStatus = true;
     this.metroToggle2.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle2.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle2.Location = new System.Drawing.Point(158, 68);
     this.metroToggle2.Name = "metroToggle2";
     this.metroToggle2.Size = new System.Drawing.Size(80, 25);
     this.metroToggle2.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle2.StyleManager = null;
     this.metroToggle2.TabIndex = 274;
     this.metroToggle2.Text = "Off";
     this.metroToggle2.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle2.UseStyleColors = false;
     this.metroToggle2.UseVisualStyleBackColor = true;
     this.metroToggle2.CheckedChanged += new System.EventHandler(this.metroToggle2_CheckedChanged);
     //
     // metroToggle1
     //
     this.metroToggle1.AutoSize = true;
     this.metroToggle1.CustomBackground = false;
     this.metroToggle1.DisplayStatus = true;
     this.metroToggle1.FontSize = MetroFramework.MetroLinkSize.Small;
     this.metroToggle1.FontWeight = MetroFramework.MetroLinkWeight.Regular;
     this.metroToggle1.Location = new System.Drawing.Point(31, 68);
     this.metroToggle1.Name = "metroToggle1";
     this.metroToggle1.Size = new System.Drawing.Size(80, 25);
     this.metroToggle1.Style = MetroFramework.MetroColorStyle.Blue;
     this.metroToggle1.StyleManager = null;
     this.metroToggle1.TabIndex = 273;
     this.metroToggle1.Text = "Off";
     this.metroToggle1.Theme = MetroFramework.MetroThemeStyle.Light;
     this.metroToggle1.UseStyleColors = false;
     this.metroToggle1.UseVisualStyleBackColor = true;
     this.metroToggle1.CheckedChanged += new System.EventHandler(this.metroToggle1_CheckedChanged);
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.ForeColor = System.Drawing.Color.SandyBrown;
     this.label33.Location = new System.Drawing.Point(142, 48);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(113, 16);
     this.label33.TabIndex = 228;
     this.label33.Text = "Advanced UAV";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.ForeColor = System.Drawing.Color.SandyBrown;
     this.label36.Location = new System.Drawing.Point(144, 169);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(107, 16);
     this.label36.TabIndex = 222;
     this.label36.Text = "Green Players";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.ForeColor = System.Drawing.Color.SandyBrown;
     this.label37.Location = new System.Drawing.Point(143, 107);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(117, 16);
     this.label37.TabIndex = 220;
     this.label37.Text = "Small Crosshair";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.ForeColor = System.Drawing.Color.SandyBrown;
     this.label38.Location = new System.Drawing.Point(32, 168);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(77, 16);
     this.label38.TabIndex = 218;
     this.label38.Text = "No Recoil";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.SandyBrown;
     this.label39.Location = new System.Drawing.Point(31, 107);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(80, 16);
     this.label39.TabIndex = 216;
     this.label39.Text = "Red Laser";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.749999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.SandyBrown;
     this.label40.Location = new System.Drawing.Point(40, 48);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(62, 16);
     this.label40.TabIndex = 214;
     this.label40.Text = "Redbox";
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.tabPage5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage5.Controls.Add(this.logInNumericTIMEMINFL);
     this.tabPage5.Controls.Add(this.logInNumericTIMEDAYFL);
     this.tabPage5.Controls.Add(this.logInNumericTIMEHFL);
     this.tabPage5.Controls.Add(this.logInNumericDEATHSFL);
     this.tabPage5.Controls.Add(this.label60);
     this.tabPage5.Controls.Add(this.logInNumericKILLSFL);
     this.tabPage5.Controls.Add(this.label61);
     this.tabPage5.Controls.Add(this.logInNumericGPFL);
     this.tabPage5.Controls.Add(this.label62);
     this.tabPage5.Controls.Add(this.logInNumericLOSSESFL);
     this.tabPage5.Controls.Add(this.label63);
     this.tabPage5.Controls.Add(this.logInNumericWINSFL);
     this.tabPage5.Controls.Add(this.label64);
     this.tabPage5.Controls.Add(this.logInNumericSCOREFL);
     this.tabPage5.Controls.Add(this.label65);
     this.tabPage5.Controls.Add(this.groupBox20);
     this.tabPage5.Controls.Add(this.logInButton12);
     this.tabPage5.Controls.Add(this.logInNumericPRESTIGEFL);
     this.tabPage5.Controls.Add(this.label43);
     this.tabPage5.Location = new System.Drawing.Point(4, 36);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(768, 424);
     this.tabPage5.TabIndex = 5;
     this.tabPage5.Text = "Full Lobby";
     //
     // logInNumericTIMEMINFL
     //
     this.logInNumericTIMEMINFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericTIMEMINFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEMINFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEMINFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericTIMEMINFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEMINFL.Location = new System.Drawing.Point(477, 14);
     this.logInNumericTIMEMINFL.Maximum = ((long)(9999999));
     this.logInNumericTIMEMINFL.Minimum = ((long)(0));
     this.logInNumericTIMEMINFL.Name = "logInNumericTIMEMINFL";
     this.logInNumericTIMEMINFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEMINFL.Size = new System.Drawing.Size(105, 24);
     this.logInNumericTIMEMINFL.TabIndex = 444;
     this.logInNumericTIMEMINFL.Text = "logInNumeric11";
     this.logInNumericTIMEMINFL.Value = ((long)(0));
     this.logInNumericTIMEMINFL.Visible = false;
     //
     // logInNumericTIMEDAYFL
     //
     this.logInNumericTIMEDAYFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericTIMEDAYFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEDAYFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEDAYFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericTIMEDAYFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEDAYFL.Location = new System.Drawing.Point(255, 14);
     this.logInNumericTIMEDAYFL.Maximum = ((long)(9999999));
     this.logInNumericTIMEDAYFL.Minimum = ((long)(0));
     this.logInNumericTIMEDAYFL.Name = "logInNumericTIMEDAYFL";
     this.logInNumericTIMEDAYFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEDAYFL.Size = new System.Drawing.Size(105, 24);
     this.logInNumericTIMEDAYFL.TabIndex = 443;
     this.logInNumericTIMEDAYFL.Text = "logInNumericTIMEDAYFL";
     this.logInNumericTIMEDAYFL.Value = ((long)(0));
     this.logInNumericTIMEDAYFL.Visible = false;
     //
     // logInNumericTIMEHFL
     //
     this.logInNumericTIMEHFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericTIMEHFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEHFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericTIMEHFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericTIMEHFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEHFL.Location = new System.Drawing.Point(366, 14);
     this.logInNumericTIMEHFL.Maximum = ((long)(9999999));
     this.logInNumericTIMEHFL.Minimum = ((long)(0));
     this.logInNumericTIMEHFL.Name = "logInNumericTIMEHFL";
     this.logInNumericTIMEHFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericTIMEHFL.Size = new System.Drawing.Size(105, 24);
     this.logInNumericTIMEHFL.TabIndex = 442;
     this.logInNumericTIMEHFL.Text = "logInNumeric13";
     this.logInNumericTIMEHFL.Value = ((long)(0));
     this.logInNumericTIMEHFL.Visible = false;
     //
     // logInNumericDEATHSFL
     //
     this.logInNumericDEATHSFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericDEATHSFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericDEATHSFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericDEATHSFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericDEATHSFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericDEATHSFL.Location = new System.Drawing.Point(94, 351);
     this.logInNumericDEATHSFL.Maximum = ((long)(9999999));
     this.logInNumericDEATHSFL.Minimum = ((long)(0));
     this.logInNumericDEATHSFL.Name = "logInNumericDEATHSFL";
     this.logInNumericDEATHSFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericDEATHSFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericDEATHSFL.TabIndex = 441;
     this.logInNumericDEATHSFL.Text = "logInNumeric1";
     this.logInNumericDEATHSFL.Value = ((long)(0));
     this.logInNumericDEATHSFL.Visible = false;
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.BackColor = System.Drawing.Color.Transparent;
     this.label60.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label60.ForeColor = System.Drawing.Color.White;
     this.label60.Location = new System.Drawing.Point(26, 354);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(64, 20);
     this.label60.TabIndex = 440;
     this.label60.Text = "Deaths :";
     this.label60.Visible = false;
     //
     // logInNumericKILLSFL
     //
     this.logInNumericKILLSFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericKILLSFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericKILLSFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericKILLSFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericKILLSFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericKILLSFL.Location = new System.Drawing.Point(619, 38);
     this.logInNumericKILLSFL.Maximum = ((long)(9999999));
     this.logInNumericKILLSFL.Minimum = ((long)(0));
     this.logInNumericKILLSFL.Name = "logInNumericKILLSFL";
     this.logInNumericKILLSFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericKILLSFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericKILLSFL.TabIndex = 439;
     this.logInNumericKILLSFL.Text = "logInNumeric6";
     this.logInNumericKILLSFL.Value = ((long)(0));
     this.logInNumericKILLSFL.Visible = false;
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.BackColor = System.Drawing.Color.Transparent;
     this.label61.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label61.ForeColor = System.Drawing.Color.White;
     this.label61.Location = new System.Drawing.Point(571, 41);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(44, 20);
     this.label61.TabIndex = 438;
     this.label61.Text = "Kills :";
     this.label61.Visible = false;
     //
     // logInNumericGPFL
     //
     this.logInNumericGPFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericGPFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericGPFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericGPFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericGPFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericGPFL.Location = new System.Drawing.Point(473, 348);
     this.logInNumericGPFL.Maximum = ((long)(9999999));
     this.logInNumericGPFL.Minimum = ((long)(0));
     this.logInNumericGPFL.Name = "logInNumericGPFL";
     this.logInNumericGPFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericGPFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericGPFL.TabIndex = 437;
     this.logInNumericGPFL.Text = "logInNumeric1";
     this.logInNumericGPFL.Value = ((long)(0));
     this.logInNumericGPFL.Visible = false;
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.BackColor = System.Drawing.Color.Transparent;
     this.label62.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label62.ForeColor = System.Drawing.Color.White;
     this.label62.Location = new System.Drawing.Point(357, 351);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(112, 20);
     this.label62.TabIndex = 436;
     this.label62.Text = "Games Played :";
     this.label62.Visible = false;
     //
     // logInNumericLOSSESFL
     //
     this.logInNumericLOSSESFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericLOSSESFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericLOSSESFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericLOSSESFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericLOSSESFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericLOSSESFL.Location = new System.Drawing.Point(65, 114);
     this.logInNumericLOSSESFL.Maximum = ((long)(9999999));
     this.logInNumericLOSSESFL.Minimum = ((long)(0));
     this.logInNumericLOSSESFL.Name = "logInNumericLOSSESFL";
     this.logInNumericLOSSESFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericLOSSESFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericLOSSESFL.TabIndex = 435;
     this.logInNumericLOSSESFL.Text = "logInNumeric2";
     this.logInNumericLOSSESFL.Value = ((long)(0));
     this.logInNumericLOSSESFL.Visible = false;
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.BackColor = System.Drawing.Color.Transparent;
     this.label63.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.ForeColor = System.Drawing.Color.White;
     this.label63.Location = new System.Drawing.Point(2, 117);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(59, 20);
     this.label63.TabIndex = 434;
     this.label63.Text = "Losses :";
     this.label63.Visible = false;
     //
     // logInNumericWINSFL
     //
     this.logInNumericWINSFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericWINSFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericWINSFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericWINSFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericWINSFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericWINSFL.Location = new System.Drawing.Point(65, 68);
     this.logInNumericWINSFL.Maximum = ((long)(9999999));
     this.logInNumericWINSFL.Minimum = ((long)(0));
     this.logInNumericWINSFL.Name = "logInNumericWINSFL";
     this.logInNumericWINSFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericWINSFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericWINSFL.TabIndex = 433;
     this.logInNumericWINSFL.Text = "logInNumeric1";
     this.logInNumericWINSFL.Value = ((long)(0));
     this.logInNumericWINSFL.Visible = false;
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.BackColor = System.Drawing.Color.Transparent;
     this.label64.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label64.ForeColor = System.Drawing.Color.White;
     this.label64.Location = new System.Drawing.Point(11, 71);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(50, 20);
     this.label64.TabIndex = 432;
     this.label64.Text = "Wins :";
     this.label64.Visible = false;
     //
     // logInNumericSCOREFL
     //
     this.logInNumericSCOREFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericSCOREFL.BorderColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericSCOREFL.ButtonColour = System.Drawing.SystemColors.Highlight;
     this.logInNumericSCOREFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericSCOREFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericSCOREFL.Location = new System.Drawing.Point(83, 15);
     this.logInNumericSCOREFL.Maximum = ((long)(9999999999999999));
     this.logInNumericSCOREFL.Minimum = ((long)(0));
     this.logInNumericSCOREFL.Name = "logInNumericSCOREFL";
     this.logInNumericSCOREFL.SecondBorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(191)))), ((int)(((byte)(255)))));
     this.logInNumericSCOREFL.Size = new System.Drawing.Size(151, 24);
     this.logInNumericSCOREFL.TabIndex = 431;
     this.logInNumericSCOREFL.Text = "logInNumericSCOREFL";
     this.logInNumericSCOREFL.Value = ((long)(0));
     this.logInNumericSCOREFL.Visible = false;
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.BackColor = System.Drawing.Color.Transparent;
     this.label65.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label65.ForeColor = System.Drawing.Color.White;
     this.label65.Location = new System.Drawing.Point(24, 18);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(55, 20);
     this.label65.TabIndex = 430;
     this.label65.Text = "Score :";
     this.label65.Visible = false;
     //
     // groupBox20
     //
     this.groupBox20.BackColor = System.Drawing.Color.Transparent;
     this.groupBox20.Controls.Add(this.label9);
     this.groupBox20.Controls.Add(this.label98);
     this.groupBox20.Controls.Add(this.label157);
     this.groupBox20.Controls.Add(this.label158);
     this.groupBox20.ForeColor = System.Drawing.Color.White;
     this.groupBox20.Location = new System.Drawing.Point(222, 158);
     this.groupBox20.Name = "groupBox20";
     this.groupBox20.Size = new System.Drawing.Size(355, 132);
     this.groupBox20.TabIndex = 414;
     this.groupBox20.TabStop = false;
     this.groupBox20.Text = "Content";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(148, 50);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(62, 18);
     this.label9.TabIndex = 421;
     this.label9.Text = "Level 50";
     //
     // label98
     //
     this.label98.AutoSize = true;
     this.label98.BackColor = System.Drawing.Color.Transparent;
     this.label98.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label98.Location = new System.Drawing.Point(101, 97);
     this.label98.Name = "label98";
     this.label98.Size = new System.Drawing.Size(157, 18);
     this.label98.TabIndex = 420;
     this.label98.Text = "Classes name colours";
     //
     // label157
     //
     this.label157.AutoSize = true;
     this.label157.BackColor = System.Drawing.Color.Transparent;
     this.label157.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label157.Location = new System.Drawing.Point(143, 73);
     this.label157.Name = "label157";
     this.label157.Size = new System.Drawing.Size(74, 18);
     this.label157.TabIndex = 413;
     this.label157.Text = "Unlock All";
     //
     // label158
     //
     this.label158.AutoSize = true;
     this.label158.BackColor = System.Drawing.Color.Transparent;
     this.label158.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label158.Location = new System.Drawing.Point(142, 27);
     this.label158.Name = "label158";
     this.label158.Size = new System.Drawing.Size(77, 18);
     this.label158.TabIndex = 412;
     this.label158.Text = "Legit Stats";
     //
     // logInButton12
     //
     this.logInButton12.BackColor = System.Drawing.Color.Transparent;
     this.logInButton12.BaseColour = System.Drawing.Color.SandyBrown;
     this.logInButton12.BorderColour = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.logInButton12.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton12.FontColour = System.Drawing.Color.SandyBrown;
     this.logInButton12.ForeColor = System.Drawing.Color.SandyBrown;
     this.logInButton12.HoverColour = System.Drawing.Color.Gray;
     this.logInButton12.Location = new System.Drawing.Point(222, 114);
     this.logInButton12.Name = "logInButton12";
     this.logInButton12.PressedColour = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(47)))), ((int)(((byte)(47)))));
     this.logInButton12.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton12.Size = new System.Drawing.Size(355, 38);
     this.logInButton12.TabIndex = 259;
     this.logInButton12.Text = "SET A FULL LOBBY";
     this.logInButton12.Click += new System.EventHandler(this.logInButton12_Click);
     //
     // logInNumericPRESTIGEFL
     //
     this.logInNumericPRESTIGEFL.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInNumericPRESTIGEFL.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInNumericPRESTIGEFL.ButtonColour = System.Drawing.Color.SandyBrown;
     this.logInNumericPRESTIGEFL.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.logInNumericPRESTIGEFL.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInNumericPRESTIGEFL.Location = new System.Drawing.Point(375, 80);
     this.logInNumericPRESTIGEFL.Maximum = ((long)(9999999));
     this.logInNumericPRESTIGEFL.Minimum = ((long)(0));
     this.logInNumericPRESTIGEFL.Name = "logInNumericPRESTIGEFL";
     this.logInNumericPRESTIGEFL.SecondBorderColour = System.Drawing.Color.SaddleBrown;
     this.logInNumericPRESTIGEFL.Size = new System.Drawing.Size(91, 24);
     this.logInNumericPRESTIGEFL.TabIndex = 216;
     this.logInNumericPRESTIGEFL.Text = "logInNumeric1";
     this.logInNumericPRESTIGEFL.Value = ((long)(30));
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.BackColor = System.Drawing.Color.Transparent;
     this.label43.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.ForeColor = System.Drawing.Color.White;
     this.label43.Location = new System.Drawing.Point(299, 83);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(72, 20);
     this.label43.TabIndex = 215;
     this.label43.Text = "Prestige :";
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     this.tabPage4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tabPage4.Controls.Add(this.groupBoxEBOOT);
     this.tabPage4.Controls.Add(this.groupBox14);
     this.tabPage4.Location = new System.Drawing.Point(4, 36);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(768, 424);
     this.tabPage4.TabIndex = 4;
     this.tabPage4.Text = "EBOOT";
     //
     // groupBoxEBOOT
     //
     this.groupBoxEBOOT.BackColor = System.Drawing.Color.Transparent;
     this.groupBoxEBOOT.Controls.Add(this.label91);
     this.groupBoxEBOOT.Controls.Add(this.label97);
     this.groupBoxEBOOT.Controls.Add(this.label92);
     this.groupBoxEBOOT.Controls.Add(this.label93);
     this.groupBoxEBOOT.Controls.Add(this.label94);
     this.groupBoxEBOOT.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBoxEBOOT.ForeColor = System.Drawing.Color.SandyBrown;
     this.groupBoxEBOOT.Location = new System.Drawing.Point(384, 96);
     this.groupBoxEBOOT.Name = "groupBoxEBOOT";
     this.groupBoxEBOOT.Size = new System.Drawing.Size(368, 156);
     this.groupBoxEBOOT.TabIndex = 31;
     this.groupBoxEBOOT.TabStop = false;
     this.groupBoxEBOOT.Text = "Comment changer mon EBOOT ?";
     //
     // label91
     //
     this.label91.AutoSize = true;
     this.label91.ForeColor = System.Drawing.Color.White;
     this.label91.Location = new System.Drawing.Point(27, 120);
     this.label91.Name = "label91";
     this.label91.Size = new System.Drawing.Size(236, 13);
     this.label91.TabIndex = 6;
     this.label91.Text = "5 - Félicitation vous avez changé votre EBOOT !";
     //
     // label97
     //
     this.label97.AutoSize = true;
     this.label97.ForeColor = System.Drawing.Color.White;
     this.label97.Location = new System.Drawing.Point(27, 99);
     this.label97.Name = "label97";
     this.label97.Size = new System.Drawing.Size(252, 13);
     this.label97.TabIndex = 5;
     this.label97.Text = "4 - Remplacez le fichier EBOOT.BIN par le nouveau";
     //
     // label92
     //
     this.label92.AutoSize = true;
     this.label92.ForeColor = System.Drawing.Color.White;
     this.label92.Location = new System.Drawing.Point(27, 78);
     this.label92.Name = "label92";
     this.label92.Size = new System.Drawing.Size(320, 13);
     this.label92.TabIndex = 2;
     this.label92.Text = "3 - Rendez vous dans dev_hdd0 -> game -> BLxSxxxx -> USRDIR";
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.ForeColor = System.Drawing.Color.White;
     this.label93.Location = new System.Drawing.Point(27, 57);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(187, 13);
     this.label93.TabIndex = 1;
     this.label93.Text = "2 - Connectez vous à votre PS3 (FTP)";
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.ForeColor = System.Drawing.Color.White;
     this.label94.Location = new System.Drawing.Point(27, 36);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(156, 13);
     this.label94.TabIndex = 0;
     this.label94.Text = "1 - Rendez vous dans Multiman";
     //
     // groupBox14
     //
     this.groupBox14.BackColor = System.Drawing.Color.Transparent;
     this.groupBox14.Controls.Add(this.logInButton11);
     this.groupBox14.Controls.Add(this.label42);
     this.groupBox14.ForeColor = System.Drawing.Color.SandyBrown;
     this.groupBox14.Location = new System.Drawing.Point(39, 96);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(339, 156);
     this.groupBox14.TabIndex = 30;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "EBOOT";
     //
     // logInButton11
     //
     this.logInButton11.BackColor = System.Drawing.Color.Transparent;
     this.logInButton11.BaseColour = System.Drawing.Color.FromArgb(((int)(((byte)(42)))), ((int)(((byte)(42)))), ((int)(((byte)(42)))));
     this.logInButton11.BorderColour = System.Drawing.Color.SandyBrown;
     this.logInButton11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.logInButton11.FontColour = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.logInButton11.HoverColour = System.Drawing.Color.SandyBrown;
     this.logInButton11.Location = new System.Drawing.Point(80, 99);
     this.logInButton11.Name = "logInButton11";
     this.logInButton11.PressedColour = System.Drawing.SystemColors.GrayText;
     this.logInButton11.ProgressColour = System.Drawing.Color.SandyBrown;
     this.logInButton11.Size = new System.Drawing.Size(174, 29);
     this.logInButton11.TabIndex = 377;
     this.logInButton11.Text = "Cliquez ici";
     this.logInButton11.Click += new System.EventHandler(this.logInButton11_Click);
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.ForeColor = System.Drawing.Color.White;
     this.label42.Location = new System.Drawing.Point(19, 43);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(309, 39);
     this.label42.TabIndex = 376;
     this.label42.Text = "Pour télécharger un EBOOT, rendez vous sur mon site \r\nen cliquant sur le bouton c" +
     "i dessous, et téléchargez \r\nl\'EBOOT de votre choix.";
     this.label42.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // Tool_AW
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::ToolAW.Properties.Resources.ThemeAW;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.ClientSize = new System.Drawing.Size(866, 517);
     this.Controls.Add(this.TabAW);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.pictureBox1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(866, 517);
     this.MinimumSize = new System.Drawing.Size(866, 517);
     this.Name = "Tool_AW";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tool_AW";
     this.Load += new System.EventHandler(this.Tool_AW_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.TabAW.ResumeLayout(false);
     this.TabHome.ResumeLayout(false);
     this.TabHome.PerformLayout();
     this.logInGroupBox1.ResumeLayout(false);
     this.logInGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.LoginGroupbox.ResumeLayout(false);
     this.LoginGroupbox.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numHOURS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMINUTES)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numDAY)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.logInGroupBox4.ResumeLayout(false);
     this.logInGroupBox3.ResumeLayout(false);
     this.logInGroupBox25.ResumeLayout(false);
     this.logInGroupBox25.PerformLayout();
     this.logInGroupBox2.ResumeLayout(false);
     this.logInGroupBox2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.logInGroupBox5.ResumeLayout(false);
     this.logInGroupBox5.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     this.groupBox20.ResumeLayout(false);
     this.groupBox20.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.groupBoxEBOOT.ResumeLayout(false);
     this.groupBoxEBOOT.PerformLayout();
     this.groupBox14.ResumeLayout(false);
     this.groupBox14.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.secretCodeField = new MetroFramework.Controls.MetroTextBox();
     this.step1Label = new MetroFramework.Controls.MetroLabel();
     this.okButton = new MetroFramework.Controls.MetroButton();
     this.cancelButton = new MetroFramework.Controls.MetroButton();
     this.nameLabel = new MetroFramework.Controls.MetroLabel();
     this.nameField = new MetroFramework.Controls.MetroTextBox();
     this.step2Label = new MetroFramework.Controls.MetroLabel();
     this.verifyButton = new MetroFramework.Controls.MetroButton();
     this.codeProgress = new System.Windows.Forms.ProgressBar();
     this.codeField = new WinAuth.SecretTextBox();
     this.step4Label = new MetroFramework.Controls.MetroLabel();
     this.timer = new System.Windows.Forms.Timer(this.components);
     this.step3Label = new MetroFramework.Controls.MetroLabel();
     this.timeBasedRadio = new MetroFramework.Controls.MetroRadioButton();
     this.counterBasedRadio = new MetroFramework.Controls.MetroRadioButton();
     this.timeBasedPanel = new System.Windows.Forms.Panel();
     this.counterBasedPanel = new System.Windows.Forms.Panel();
     this.verifyCounterButton = new MetroFramework.Controls.MetroButton();
     this.counterField = new MetroFramework.Controls.MetroTextBox();
     this.step3CounterLabel = new MetroFramework.Controls.MetroLabel();
     this.secretCodeButton = new MetroFramework.Controls.MetroButton();
     this.timeBasedPanel.SuspendLayout();
     this.counterBasedPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // secretCodeField
     //
     this.secretCodeField.AllowDrop = true;
     this.secretCodeField.CausesValidation = false;
     this.secretCodeField.Location = new System.Drawing.Point(43, 171);
     this.secretCodeField.MaxLength = 32767;
     this.secretCodeField.Name = "secretCodeField";
     this.secretCodeField.PasswordChar = '\0';
     this.secretCodeField.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.secretCodeField.SelectedText = "";
     this.secretCodeField.Size = new System.Drawing.Size(311, 22);
     this.secretCodeField.TabIndex = 1;
     this.secretCodeField.UseSelectable = true;
     //
     // step1Label
     //
     this.step1Label.Location = new System.Drawing.Point(25, 120);
     this.step1Label.Name = "step1Label";
     this.step1Label.Size = new System.Drawing.Size(425, 48);
     this.step1Label.TabIndex = 1;
     this.step1Label.Text = "1. Enter the Secret Code for your authenticator. Spaces don\'t matter. If you have a Q" +
     "R code, you can paste the URL of the image instead.\r\n";
     //
     // okButton
     //
     this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location = new System.Drawing.Point(292, 470);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 6;
     this.okButton.Text = "OK";
     this.okButton.UseSelectable = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location = new System.Drawing.Point(373, 470);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex = 7;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseSelectable = true;
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // nameLabel
     //
     this.nameLabel.AutoSize = true;
     this.nameLabel.Location = new System.Drawing.Point(23, 70);
     this.nameLabel.Name = "nameLabel";
     this.nameLabel.Size = new System.Drawing.Size(48, 19);
     this.nameLabel.TabIndex = 3;
     this.nameLabel.Text = "Name:";
     //
     // nameField
     //
     this.nameField.Location = new System.Drawing.Point(77, 67);
     this.nameField.MaxLength = 32767;
     this.nameField.Name = "nameField";
     this.nameField.PasswordChar = '\0';
     this.nameField.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.nameField.SelectedText = "";
     this.nameField.Size = new System.Drawing.Size(371, 22);
     this.nameField.TabIndex = 0;
     this.nameField.UseSelectable = true;
     //
     // step2Label
     //
     this.step2Label.Location = new System.Drawing.Point(25, 213);
     this.step2Label.Name = "step2Label";
     this.step2Label.Size = new System.Drawing.Size(423, 49);
     this.step2Label.TabIndex = 10;
     this.step2Label.Text = "2. Choose if this is a time-based or a counter-based authenticator. If you don\'t " +
     "know, it\'s likely time-based, so just leave the default choice.";
     //
     // verifyButton
     //
     this.verifyButton.Location = new System.Drawing.Point(122, 43);
     this.verifyButton.Name = "verifyButton";
     this.verifyButton.Size = new System.Drawing.Size(158, 23);
     this.verifyButton.TabIndex = 0;
     this.verifyButton.Text = "Verify Authenticator";
     this.verifyButton.UseSelectable = true;
     this.verifyButton.Click += new System.EventHandler(this.verifyButton_Click);
     //
     // codeProgress
     //
     this.codeProgress.Location = new System.Drawing.Point(124, 433);
     this.codeProgress.Maximum = 30;
     this.codeProgress.Minimum = 1;
     this.codeProgress.Name = "codeProgress";
     this.codeProgress.Size = new System.Drawing.Size(158, 8);
     this.codeProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
     this.codeProgress.TabIndex = 13;
     this.codeProgress.Value = 1;
     this.codeProgress.Visible = false;
     //
     // codeField
     //
     this.codeField.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.codeField.Location = new System.Drawing.Point(124, 405);
     this.codeField.Multiline = true;
     this.codeField.Name = "codeField";
     this.codeField.SecretMode = false;
     this.codeField.Size = new System.Drawing.Size(158, 26);
     this.codeField.SpaceOut = 3;
     this.codeField.TabIndex = 5;
     //
     // step4Label
     //
     this.step4Label.AutoSize = true;
     this.step4Label.Location = new System.Drawing.Point(25, 373);
     this.step4Label.Name = "step4Label";
     this.step4Label.Size = new System.Drawing.Size(293, 19);
     this.step4Label.TabIndex = 11;
     this.step4Label.Text = "4. Verify the following code matches your service.";
     //
     // timer
     //
     this.timer.Enabled = true;
     this.timer.Interval = 500;
     this.timer.Tick += new System.EventHandler(this.timer_Tick);
     //
     // step3Label
     //
     this.step3Label.Location = new System.Drawing.Point(23, 12);
     this.step3Label.Name = "step3Label";
     this.step3Label.Size = new System.Drawing.Size(423, 28);
     this.step3Label.TabIndex = 10;
     this.step3Label.Text = "3. Click the Verify button to check the first code.";
     //
     // timeBasedRadio
     //
     this.timeBasedRadio.AutoSize = true;
     this.timeBasedRadio.Checked = true;
     this.timeBasedRadio.Location = new System.Drawing.Point(43, 265);
     this.timeBasedRadio.Name = "timeBasedRadio";
     this.timeBasedRadio.Size = new System.Drawing.Size(86, 15);
     this.timeBasedRadio.TabIndex = 3;
     this.timeBasedRadio.TabStop = true;
     this.timeBasedRadio.Text = "Time-based";
     this.timeBasedRadio.UseSelectable = true;
     this.timeBasedRadio.CheckedChanged += new System.EventHandler(this.timeBasedRadio_CheckedChanged);
     //
     // counterBasedRadio
     //
     this.counterBasedRadio.AutoSize = true;
     this.counterBasedRadio.Location = new System.Drawing.Point(146, 265);
     this.counterBasedRadio.Name = "counterBasedRadio";
     this.counterBasedRadio.Size = new System.Drawing.Size(102, 15);
     this.counterBasedRadio.TabIndex = 4;
     this.counterBasedRadio.Text = "Counter-based";
     this.counterBasedRadio.UseSelectable = true;
     this.counterBasedRadio.CheckedChanged += new System.EventHandler(this.counterBasedRadio_CheckedChanged);
     //
     // timeBasedPanel
     //
     this.timeBasedPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.timeBasedPanel.Controls.Add(this.step3Label);
     this.timeBasedPanel.Controls.Add(this.verifyButton);
     this.timeBasedPanel.Location = new System.Drawing.Point(2, 286);
     this.timeBasedPanel.Name = "timeBasedPanel";
     this.timeBasedPanel.Size = new System.Drawing.Size(464, 84);
     this.timeBasedPanel.TabIndex = 15;
     //
     // counterBasedPanel
     //
     this.counterBasedPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.counterBasedPanel.Controls.Add(this.verifyCounterButton);
     this.counterBasedPanel.Controls.Add(this.counterField);
     this.counterBasedPanel.Controls.Add(this.step3CounterLabel);
     this.counterBasedPanel.Location = new System.Drawing.Point(2, 286);
     this.counterBasedPanel.Name = "counterBasedPanel";
     this.counterBasedPanel.Size = new System.Drawing.Size(464, 84);
     this.counterBasedPanel.TabIndex = 16;
     this.counterBasedPanel.Visible = false;
     //
     // verifyCounterButton
     //
     this.verifyCounterButton.Location = new System.Drawing.Point(207, 58);
     this.verifyCounterButton.Name = "verifyCounterButton";
     this.verifyCounterButton.Size = new System.Drawing.Size(158, 23);
     this.verifyCounterButton.TabIndex = 1;
     this.verifyCounterButton.Text = "Verify Authenticator";
     this.verifyCounterButton.UseSelectable = true;
     this.verifyCounterButton.Click += new System.EventHandler(this.verifyButton_Click);
     //
     // counterField
     //
     this.counterField.AllowDrop = true;
     this.counterField.CausesValidation = false;
     this.counterField.Location = new System.Drawing.Point(122, 58);
     this.counterField.MaxLength = 32767;
     this.counterField.Name = "counterField";
     this.counterField.PasswordChar = '\0';
     this.counterField.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.counterField.SelectedText = "";
     this.counterField.Size = new System.Drawing.Size(74, 20);
     this.counterField.TabIndex = 0;
     this.counterField.UseSelectable = true;
     //
     // step3CounterLabel
     //
     this.step3CounterLabel.Location = new System.Drawing.Point(23, 12);
     this.step3CounterLabel.Name = "step3CounterLabel";
     this.step3CounterLabel.Size = new System.Drawing.Size(423, 43);
     this.step3CounterLabel.TabIndex = 10;
     this.step3CounterLabel.Text = "3. Enter the initial counter value if known. Click the Verify button that will sh" +
     "ow the last code that was used.";
     //
     // secretCodeButton
     //
     this.secretCodeButton.Location = new System.Drawing.Point(360, 171);
     this.secretCodeButton.Name = "secretCodeButton";
     this.secretCodeButton.Size = new System.Drawing.Size(75, 23);
     this.secretCodeButton.TabIndex = 2;
     this.secretCodeButton.Text = "Decode";
     this.secretCodeButton.UseSelectable = true;
     this.secretCodeButton.Click += new System.EventHandler(this.secretCodeButton_Click);
     //
     // AddAuthenticator
     //
     this.AcceptButton = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BorderStyle = MetroFramework.Forms.MetroFormBorderStyle.FixedSingle;
     this.CancelButton = this.cancelButton;
     this.ClientSize = new System.Drawing.Size(471, 516);
     this.Controls.Add(this.secretCodeButton);
     this.Controls.Add(this.counterBasedPanel);
     this.Controls.Add(this.timeBasedPanel);
     this.Controls.Add(this.counterBasedRadio);
     this.Controls.Add(this.timeBasedRadio);
     this.Controls.Add(this.codeProgress);
     this.Controls.Add(this.codeField);
     this.Controls.Add(this.step4Label);
     this.Controls.Add(this.step2Label);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.secretCodeField);
     this.Controls.Add(this.nameLabel);
     this.Controls.Add(this.nameField);
     this.Controls.Add(this.step1Label);
     this.MaximizeBox = false;
     this.Name = "AddAuthenticator";
     this.Resizable = false;
     this.ShowIcon = false;
     this.Text = "Add Authenticator";
     this.Load += new System.EventHandler(this.AddAuthenticator_Load);
     this.timeBasedPanel.ResumeLayout(false);
     this.counterBasedPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            MetroFramework.Controls.MetroButton cmdMededelingToevoegen;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDocent));
            MetroFramework.Controls.MetroButton cmdTakenToevoegen;
            MetroFramework.Controls.MetroButton bttnMededelingCancel;
            MetroFramework.Controls.MetroButton bttnTaakCancel;
            MetroFramework.Controls.MetroButton bttnTestCancel;
            MetroFramework.Controls.MetroButton cmdTestToevoegen;
            this.metroStyleManager1 = new MetroFramework.Components.MetroStyleManager();
            this.tbctrlStudent = new MetroFramework.Controls.MetroTabControl();
            this.tabMededelingen = new MetroFramework.Controls.MetroTabPage();
            this.dtpEindDatum = new System.Windows.Forms.DateTimePicker();
            this.lblEindDatum = new System.Windows.Forms.Label();
            this.dtpBeginDatum = new System.Windows.Forms.DateTimePicker();
            this.comboVakken = new System.Windows.Forms.ComboBox();
            this.bsVakkenLijst = new System.Windows.Forms.BindingSource(this.components);
            this.lblBeginDatum = new System.Windows.Forms.Label();
            this.tbBeschrijving = new System.Windows.Forms.TextBox();
            this.dgrvMededelingen = new System.Windows.Forms.DataGridView();
            this.lblMededelingen = new MetroFramework.Controls.MetroLabel();
            this.tabVakken = new MetroFramework.Controls.MetroTabPage();
            this.lblFoutVakkenDocent = new System.Windows.Forms.Label();
            this.dgrvStudenten = new System.Windows.Forms.DataGridView();
            this.cmboVakkenDieStudentenVolgen = new System.Windows.Forms.ComboBox();
            this.lblStudentenDocent = new MetroFramework.Controls.MetroLabel();
            this.lblVakkenDocent = new MetroFramework.Controls.MetroLabel();
            this.tabTaken = new MetroFramework.Controls.MetroTabPage();
            this.dgrvTaken = new System.Windows.Forms.DataGridView();
            this.lblFoutTaak = new System.Windows.Forms.Label();
            this.dtpEindDatumTaak = new System.Windows.Forms.DateTimePicker();
            this.lblEindDatumTaak = new System.Windows.Forms.Label();
            this.dtpBeginDatumTaak = new System.Windows.Forms.DateTimePicker();
            this.cmboxVakkenTaken = new System.Windows.Forms.ComboBox();
            this.lblBeginDatumTaak = new System.Windows.Forms.Label();
            this.txtboxTaakOmschrijving = new System.Windows.Forms.TextBox();
            this.lblTakenDocent = new MetroFramework.Controls.MetroLabel();
            this.tabTesten = new MetroFramework.Controls.MetroTabPage();
            this.dgrvTesten = new System.Windows.Forms.DataGridView();
            this.lblFoutTest = new System.Windows.Forms.Label();
            this.dtpEindDatumTest = new System.Windows.Forms.DateTimePicker();
            this.lblEindDatumTest = new System.Windows.Forms.Label();
            this.dtpBeginDatumTest = new System.Windows.Forms.DateTimePicker();
            this.cmBoxVakkenTesten = new System.Windows.Forms.ComboBox();
            this.lblBeginDatumTest = new System.Windows.Forms.Label();
            this.txtboxTestOmschrijving = new System.Windows.Forms.TextBox();
            this.lblTestenDocent = new MetroFramework.Controls.MetroLabel();
            this.lstTaken = new System.Windows.Forms.ListBox();
            this.lblFoutMededeling = new System.Windows.Forms.Label();
            this.languageControl1 = new PP_Presentation.LanguageControl();
            cmdMededelingToevoegen = new MetroFramework.Controls.MetroButton();
            cmdTakenToevoegen = new MetroFramework.Controls.MetroButton();
            bttnMededelingCancel = new MetroFramework.Controls.MetroButton();
            bttnTaakCancel = new MetroFramework.Controls.MetroButton();
            bttnTestCancel = new MetroFramework.Controls.MetroButton();
            cmdTestToevoegen = new MetroFramework.Controls.MetroButton();
            this.tbctrlStudent.SuspendLayout();
            this.tabMededelingen.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bsVakkenLijst)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvMededelingen)).BeginInit();
            this.tabVakken.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvStudenten)).BeginInit();
            this.tabTaken.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvTaken)).BeginInit();
            this.tabTesten.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvTesten)).BeginInit();
            this.SuspendLayout();
            // 
            // cmdMededelingToevoegen
            // 
            resources.ApplyResources(cmdMededelingToevoegen, "cmdMededelingToevoegen");
            cmdMededelingToevoegen.Highlight = true;
            cmdMededelingToevoegen.Name = "cmdMededelingToevoegen";
            cmdMededelingToevoegen.Style = MetroFramework.MetroColorStyle.Black;
            cmdMededelingToevoegen.StyleManager = this.metroStyleManager1;
            cmdMededelingToevoegen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdMededelingToevoegen.Click += new System.EventHandler(this.cmdMededelingToevoegen_Click);
            // 
            // metroStyleManager1
            // 
            this.metroStyleManager1.OwnerForm = this;
            this.metroStyleManager1.Style = MetroFramework.MetroColorStyle.Black;
            this.metroStyleManager1.Theme = MetroFramework.MetroThemeStyle.Light;
            // 
            // cmdTakenToevoegen
            // 
            resources.ApplyResources(cmdTakenToevoegen, "cmdTakenToevoegen");
            cmdTakenToevoegen.Highlight = true;
            cmdTakenToevoegen.Name = "cmdTakenToevoegen";
            cmdTakenToevoegen.Style = MetroFramework.MetroColorStyle.Black;
            cmdTakenToevoegen.StyleManager = this.metroStyleManager1;
            cmdTakenToevoegen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdTakenToevoegen.Click += new System.EventHandler(this.cmdTakenToevoegen_Click);
            // 
            // bttnMededelingCancel
            // 
            resources.ApplyResources(bttnMededelingCancel, "bttnMededelingCancel");
            bttnMededelingCancel.Highlight = true;
            bttnMededelingCancel.Name = "bttnMededelingCancel";
            bttnMededelingCancel.Style = MetroFramework.MetroColorStyle.Black;
            bttnMededelingCancel.StyleManager = this.metroStyleManager1;
            bttnMededelingCancel.Theme = MetroFramework.MetroThemeStyle.Light;
            bttnMededelingCancel.Click += new System.EventHandler(this.bttnMededelingCancel_Click);
            // 
            // bttnTaakCancel
            // 
            resources.ApplyResources(bttnTaakCancel, "bttnTaakCancel");
            bttnTaakCancel.Highlight = true;
            bttnTaakCancel.Name = "bttnTaakCancel";
            bttnTaakCancel.Style = MetroFramework.MetroColorStyle.Black;
            bttnTaakCancel.StyleManager = this.metroStyleManager1;
            bttnTaakCancel.Theme = MetroFramework.MetroThemeStyle.Light;
            bttnTaakCancel.Click += new System.EventHandler(this.cmdTaakCancel_Click);
            // 
            // bttnTestCancel
            // 
            resources.ApplyResources(bttnTestCancel, "bttnTestCancel");
            bttnTestCancel.Highlight = true;
            bttnTestCancel.Name = "bttnTestCancel";
            bttnTestCancel.Style = MetroFramework.MetroColorStyle.Black;
            bttnTestCancel.StyleManager = this.metroStyleManager1;
            bttnTestCancel.Theme = MetroFramework.MetroThemeStyle.Light;
            bttnTestCancel.Click += new System.EventHandler(this.cmdTestCancel_Click);
            // 
            // cmdTestToevoegen
            // 
            resources.ApplyResources(cmdTestToevoegen, "cmdTestToevoegen");
            cmdTestToevoegen.Highlight = true;
            cmdTestToevoegen.Name = "cmdTestToevoegen";
            cmdTestToevoegen.Style = MetroFramework.MetroColorStyle.Black;
            cmdTestToevoegen.StyleManager = this.metroStyleManager1;
            cmdTestToevoegen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdTestToevoegen.Click += new System.EventHandler(this.cmdTestToevoegen_Click);
            // 
            // tbctrlStudent
            // 
            resources.ApplyResources(this.tbctrlStudent, "tbctrlStudent");
            this.tbctrlStudent.Controls.Add(this.tabMededelingen);
            this.tbctrlStudent.Controls.Add(this.tabVakken);
            this.tbctrlStudent.Controls.Add(this.tabTaken);
            this.tbctrlStudent.Controls.Add(this.tabTesten);
            this.tbctrlStudent.CustomBackground = false;
            this.tbctrlStudent.FontSize = MetroFramework.MetroTabControlSize.Medium;
            this.tbctrlStudent.FontWeight = MetroFramework.MetroTabControlWeight.Light;
            this.tbctrlStudent.Name = "tbctrlStudent";
            this.tbctrlStudent.SelectedIndex = 0;
            this.tbctrlStudent.Style = MetroFramework.MetroColorStyle.Black;
            this.tbctrlStudent.StyleManager = this.metroStyleManager1;
            this.tbctrlStudent.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.tbctrlStudent.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tbctrlStudent.UseStyleColors = false;
            // 
            // tabMededelingen
            // 
            resources.ApplyResources(this.tabMededelingen, "tabMededelingen");
            this.tabMededelingen.Controls.Add(this.dtpEindDatum);
            this.tabMededelingen.Controls.Add(bttnMededelingCancel);
            this.tabMededelingen.Controls.Add(this.lblEindDatum);
            this.tabMededelingen.Controls.Add(this.dtpBeginDatum);
            this.tabMededelingen.Controls.Add(this.comboVakken);
            this.tabMededelingen.Controls.Add(this.lblBeginDatum);
            this.tabMededelingen.Controls.Add(this.tbBeschrijving);
            this.tabMededelingen.Controls.Add(this.dgrvMededelingen);
            this.tabMededelingen.Controls.Add(cmdMededelingToevoegen);
            this.tabMededelingen.Controls.Add(this.lblMededelingen);
            this.tabMededelingen.CustomBackground = false;
            this.tabMededelingen.HorizontalScrollbar = false;
            this.tabMededelingen.HorizontalScrollbarBarColor = true;
            this.tabMededelingen.HorizontalScrollbarHighlightOnWheel = false;
            this.tabMededelingen.HorizontalScrollbarSize = 8;
            this.tabMededelingen.Name = "tabMededelingen";
            this.tabMededelingen.Style = MetroFramework.MetroColorStyle.Black;
            this.tabMededelingen.StyleManager = this.metroStyleManager1;
            this.tabMededelingen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabMededelingen.VerticalScrollbar = false;
            this.tabMededelingen.VerticalScrollbarBarColor = true;
            this.tabMededelingen.VerticalScrollbarHighlightOnWheel = false;
            this.tabMededelingen.VerticalScrollbarSize = 8;
            // 
            // dtpEindDatum
            // 
            resources.ApplyResources(this.dtpEindDatum, "dtpEindDatum");
            this.dtpEindDatum.Name = "dtpEindDatum";
            // 
            // lblEindDatum
            // 
            resources.ApplyResources(this.lblEindDatum, "lblEindDatum");
            this.lblEindDatum.Name = "lblEindDatum";
            // 
            // dtpBeginDatum
            // 
            resources.ApplyResources(this.dtpBeginDatum, "dtpBeginDatum");
            this.dtpBeginDatum.Name = "dtpBeginDatum";
            // 
            // comboVakken
            // 
            resources.ApplyResources(this.comboVakken, "comboVakken");
            this.comboVakken.DataSource = this.bsVakkenLijst;
            this.comboVakken.FormattingEnabled = true;
            this.comboVakken.Name = "comboVakken";
            // 
            // lblBeginDatum
            // 
            resources.ApplyResources(this.lblBeginDatum, "lblBeginDatum");
            this.lblBeginDatum.Name = "lblBeginDatum";
            // 
            // tbBeschrijving
            // 
            resources.ApplyResources(this.tbBeschrijving, "tbBeschrijving");
            this.tbBeschrijving.Name = "tbBeschrijving";
            // 
            // dgrvMededelingen
            // 
            resources.ApplyResources(this.dgrvMededelingen, "dgrvMededelingen");
            this.dgrvMededelingen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgrvMededelingen.Name = "dgrvMededelingen";
            // 
            // lblMededelingen
            // 
            resources.ApplyResources(this.lblMededelingen, "lblMededelingen");
            this.lblMededelingen.CustomBackground = false;
            this.lblMededelingen.CustomForeColor = false;
            this.lblMededelingen.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblMededelingen.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblMededelingen.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblMededelingen.Name = "lblMededelingen";
            this.lblMededelingen.Style = MetroFramework.MetroColorStyle.Black;
            this.lblMededelingen.StyleManager = this.metroStyleManager1;
            this.lblMededelingen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblMededelingen.UseStyleColors = false;
            // 
            // tabVakken
            // 
            resources.ApplyResources(this.tabVakken, "tabVakken");
            this.tabVakken.Controls.Add(this.lblFoutVakkenDocent);
            this.tabVakken.Controls.Add(this.dgrvStudenten);
            this.tabVakken.Controls.Add(this.cmboVakkenDieStudentenVolgen);
            this.tabVakken.Controls.Add(this.lblStudentenDocent);
            this.tabVakken.Controls.Add(this.lblVakkenDocent);
            this.tabVakken.CustomBackground = false;
            this.tabVakken.HorizontalScrollbar = false;
            this.tabVakken.HorizontalScrollbarBarColor = true;
            this.tabVakken.HorizontalScrollbarHighlightOnWheel = false;
            this.tabVakken.HorizontalScrollbarSize = 8;
            this.tabVakken.Name = "tabVakken";
            this.tabVakken.Style = MetroFramework.MetroColorStyle.Black;
            this.tabVakken.StyleManager = this.metroStyleManager1;
            this.tabVakken.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabVakken.VerticalScrollbar = false;
            this.tabVakken.VerticalScrollbarBarColor = true;
            this.tabVakken.VerticalScrollbarHighlightOnWheel = false;
            this.tabVakken.VerticalScrollbarSize = 8;
            // 
            // lblFoutVakkenDocent
            // 
            resources.ApplyResources(this.lblFoutVakkenDocent, "lblFoutVakkenDocent");
            this.lblFoutVakkenDocent.Name = "lblFoutVakkenDocent";
            // 
            // dgrvStudenten
            // 
            resources.ApplyResources(this.dgrvStudenten, "dgrvStudenten");
            this.dgrvStudenten.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
            this.dgrvStudenten.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
            this.dgrvStudenten.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dgrvStudenten.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dgrvStudenten.Name = "dgrvStudenten";
            this.dgrvStudenten.RowTemplate.Height = 24;
            this.dgrvStudenten.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            // 
            // cmboVakkenDieStudentenVolgen
            // 
            resources.ApplyResources(this.cmboVakkenDieStudentenVolgen, "cmboVakkenDieStudentenVolgen");
            this.cmboVakkenDieStudentenVolgen.DataSource = this.bsVakkenLijst;
            this.cmboVakkenDieStudentenVolgen.FormattingEnabled = true;
            this.cmboVakkenDieStudentenVolgen.Name = "cmboVakkenDieStudentenVolgen";
            this.cmboVakkenDieStudentenVolgen.SelectedIndexChanged += new System.EventHandler(this.cmboVakkenDieStudentenVolgen_SelectedIndexChanged);
            // 
            // lblStudentenDocent
            // 
            resources.ApplyResources(this.lblStudentenDocent, "lblStudentenDocent");
            this.lblStudentenDocent.CustomBackground = false;
            this.lblStudentenDocent.CustomForeColor = false;
            this.lblStudentenDocent.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblStudentenDocent.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblStudentenDocent.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblStudentenDocent.Name = "lblStudentenDocent";
            this.lblStudentenDocent.Style = MetroFramework.MetroColorStyle.Black;
            this.lblStudentenDocent.StyleManager = this.metroStyleManager1;
            this.lblStudentenDocent.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblStudentenDocent.UseStyleColors = false;
            // 
            // lblVakkenDocent
            // 
            resources.ApplyResources(this.lblVakkenDocent, "lblVakkenDocent");
            this.lblVakkenDocent.CustomBackground = false;
            this.lblVakkenDocent.CustomForeColor = false;
            this.lblVakkenDocent.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblVakkenDocent.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblVakkenDocent.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblVakkenDocent.Name = "lblVakkenDocent";
            this.lblVakkenDocent.Style = MetroFramework.MetroColorStyle.Black;
            this.lblVakkenDocent.StyleManager = this.metroStyleManager1;
            this.lblVakkenDocent.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblVakkenDocent.UseStyleColors = false;
            // 
            // tabTaken
            // 
            resources.ApplyResources(this.tabTaken, "tabTaken");
            this.tabTaken.Controls.Add(this.dgrvTaken);
            this.tabTaken.Controls.Add(this.lblFoutTaak);
            this.tabTaken.Controls.Add(this.dtpEindDatumTaak);
            this.tabTaken.Controls.Add(bttnTaakCancel);
            this.tabTaken.Controls.Add(this.lblEindDatumTaak);
            this.tabTaken.Controls.Add(this.dtpBeginDatumTaak);
            this.tabTaken.Controls.Add(this.cmboxVakkenTaken);
            this.tabTaken.Controls.Add(this.lblBeginDatumTaak);
            this.tabTaken.Controls.Add(this.txtboxTaakOmschrijving);
            this.tabTaken.Controls.Add(cmdTakenToevoegen);
            this.tabTaken.Controls.Add(this.lblTakenDocent);
            this.tabTaken.CustomBackground = false;
            this.tabTaken.HorizontalScrollbar = false;
            this.tabTaken.HorizontalScrollbarBarColor = true;
            this.tabTaken.HorizontalScrollbarHighlightOnWheel = false;
            this.tabTaken.HorizontalScrollbarSize = 8;
            this.tabTaken.Name = "tabTaken";
            this.tabTaken.Style = MetroFramework.MetroColorStyle.Black;
            this.tabTaken.StyleManager = this.metroStyleManager1;
            this.tabTaken.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabTaken.VerticalScrollbar = false;
            this.tabTaken.VerticalScrollbarBarColor = true;
            this.tabTaken.VerticalScrollbarHighlightOnWheel = false;
            this.tabTaken.VerticalScrollbarSize = 8;
            // 
            // dgrvTaken
            // 
            resources.ApplyResources(this.dgrvTaken, "dgrvTaken");
            this.dgrvTaken.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgrvTaken.Name = "dgrvTaken";
            // 
            // lblFoutTaak
            // 
            resources.ApplyResources(this.lblFoutTaak, "lblFoutTaak");
            this.lblFoutTaak.Name = "lblFoutTaak";
            // 
            // dtpEindDatumTaak
            // 
            resources.ApplyResources(this.dtpEindDatumTaak, "dtpEindDatumTaak");
            this.dtpEindDatumTaak.Name = "dtpEindDatumTaak";
            // 
            // lblEindDatumTaak
            // 
            resources.ApplyResources(this.lblEindDatumTaak, "lblEindDatumTaak");
            this.lblEindDatumTaak.Name = "lblEindDatumTaak";
            // 
            // dtpBeginDatumTaak
            // 
            resources.ApplyResources(this.dtpBeginDatumTaak, "dtpBeginDatumTaak");
            this.dtpBeginDatumTaak.Name = "dtpBeginDatumTaak";
            // 
            // cmboxVakkenTaken
            // 
            resources.ApplyResources(this.cmboxVakkenTaken, "cmboxVakkenTaken");
            this.cmboxVakkenTaken.DataSource = this.bsVakkenLijst;
            this.cmboxVakkenTaken.FormattingEnabled = true;
            this.cmboxVakkenTaken.Name = "cmboxVakkenTaken";
            // 
            // lblBeginDatumTaak
            // 
            resources.ApplyResources(this.lblBeginDatumTaak, "lblBeginDatumTaak");
            this.lblBeginDatumTaak.Name = "lblBeginDatumTaak";
            // 
            // txtboxTaakOmschrijving
            // 
            resources.ApplyResources(this.txtboxTaakOmschrijving, "txtboxTaakOmschrijving");
            this.txtboxTaakOmschrijving.Name = "txtboxTaakOmschrijving";
            // 
            // lblTakenDocent
            // 
            resources.ApplyResources(this.lblTakenDocent, "lblTakenDocent");
            this.lblTakenDocent.CustomBackground = false;
            this.lblTakenDocent.CustomForeColor = false;
            this.lblTakenDocent.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblTakenDocent.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblTakenDocent.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblTakenDocent.Name = "lblTakenDocent";
            this.lblTakenDocent.Style = MetroFramework.MetroColorStyle.Black;
            this.lblTakenDocent.StyleManager = this.metroStyleManager1;
            this.lblTakenDocent.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblTakenDocent.UseStyleColors = false;
            // 
            // tabTesten
            // 
            resources.ApplyResources(this.tabTesten, "tabTesten");
            this.tabTesten.Controls.Add(this.dgrvTesten);
            this.tabTesten.Controls.Add(this.lblFoutTest);
            this.tabTesten.Controls.Add(this.dtpEindDatumTest);
            this.tabTesten.Controls.Add(bttnTestCancel);
            this.tabTesten.Controls.Add(this.lblEindDatumTest);
            this.tabTesten.Controls.Add(this.dtpBeginDatumTest);
            this.tabTesten.Controls.Add(this.cmBoxVakkenTesten);
            this.tabTesten.Controls.Add(this.lblBeginDatumTest);
            this.tabTesten.Controls.Add(this.txtboxTestOmschrijving);
            this.tabTesten.Controls.Add(cmdTestToevoegen);
            this.tabTesten.Controls.Add(this.lblTestenDocent);
            this.tabTesten.CustomBackground = false;
            this.tabTesten.HorizontalScrollbar = false;
            this.tabTesten.HorizontalScrollbarBarColor = true;
            this.tabTesten.HorizontalScrollbarHighlightOnWheel = false;
            this.tabTesten.HorizontalScrollbarSize = 8;
            this.tabTesten.Name = "tabTesten";
            this.tabTesten.Style = MetroFramework.MetroColorStyle.Black;
            this.tabTesten.StyleManager = this.metroStyleManager1;
            this.tabTesten.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabTesten.VerticalScrollbar = false;
            this.tabTesten.VerticalScrollbarBarColor = true;
            this.tabTesten.VerticalScrollbarHighlightOnWheel = false;
            this.tabTesten.VerticalScrollbarSize = 8;
            // 
            // dgrvTesten
            // 
            resources.ApplyResources(this.dgrvTesten, "dgrvTesten");
            this.dgrvTesten.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgrvTesten.Name = "dgrvTesten";
            // 
            // lblFoutTest
            // 
            resources.ApplyResources(this.lblFoutTest, "lblFoutTest");
            this.lblFoutTest.Name = "lblFoutTest";
            // 
            // dtpEindDatumTest
            // 
            resources.ApplyResources(this.dtpEindDatumTest, "dtpEindDatumTest");
            this.dtpEindDatumTest.Name = "dtpEindDatumTest";
            // 
            // lblEindDatumTest
            // 
            resources.ApplyResources(this.lblEindDatumTest, "lblEindDatumTest");
            this.lblEindDatumTest.Name = "lblEindDatumTest";
            // 
            // dtpBeginDatumTest
            // 
            resources.ApplyResources(this.dtpBeginDatumTest, "dtpBeginDatumTest");
            this.dtpBeginDatumTest.Name = "dtpBeginDatumTest";
            // 
            // cmBoxVakkenTesten
            // 
            resources.ApplyResources(this.cmBoxVakkenTesten, "cmBoxVakkenTesten");
            this.cmBoxVakkenTesten.DataSource = this.bsVakkenLijst;
            this.cmBoxVakkenTesten.FormattingEnabled = true;
            this.cmBoxVakkenTesten.Name = "cmBoxVakkenTesten";
            // 
            // lblBeginDatumTest
            // 
            resources.ApplyResources(this.lblBeginDatumTest, "lblBeginDatumTest");
            this.lblBeginDatumTest.Name = "lblBeginDatumTest";
            // 
            // txtboxTestOmschrijving
            // 
            resources.ApplyResources(this.txtboxTestOmschrijving, "txtboxTestOmschrijving");
            this.txtboxTestOmschrijving.Name = "txtboxTestOmschrijving";
            // 
            // lblTestenDocent
            // 
            resources.ApplyResources(this.lblTestenDocent, "lblTestenDocent");
            this.lblTestenDocent.CustomBackground = false;
            this.lblTestenDocent.CustomForeColor = false;
            this.lblTestenDocent.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblTestenDocent.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblTestenDocent.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblTestenDocent.Name = "lblTestenDocent";
            this.lblTestenDocent.Style = MetroFramework.MetroColorStyle.Black;
            this.lblTestenDocent.StyleManager = this.metroStyleManager1;
            this.lblTestenDocent.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblTestenDocent.UseStyleColors = false;
            // 
            // lstTaken
            // 
            resources.ApplyResources(this.lstTaken, "lstTaken");
            this.lstTaken.Name = "lstTaken";
            // 
            // lblFoutMededeling
            // 
            resources.ApplyResources(this.lblFoutMededeling, "lblFoutMededeling");
            this.lblFoutMededeling.Name = "lblFoutMededeling";
            // 
            // languageControl1
            // 
            resources.ApplyResources(this.languageControl1, "languageControl1");
            this.languageControl1.Name = "languageControl1";
            // 
            // FrmDocent
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.languageControl1);
            this.Controls.Add(this.lblFoutMededeling);
            this.Controls.Add(this.tbctrlStudent);
            this.MaximizeBox = false;
            this.Name = "FrmDocent";
            this.Resizable = false;
            this.Style = MetroFramework.MetroColorStyle.Black;
            this.StyleManager = this.metroStyleManager1;
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmDocent_FormClosed);
            this.tbctrlStudent.ResumeLayout(false);
            this.tabMededelingen.ResumeLayout(false);
            this.tabMededelingen.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bsVakkenLijst)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvMededelingen)).EndInit();
            this.tabVakken.ResumeLayout(false);
            this.tabVakken.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvStudenten)).EndInit();
            this.tabTaken.ResumeLayout(false);
            this.tabTaken.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvTaken)).EndInit();
            this.tabTesten.ResumeLayout(false);
            this.tabTesten.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvTesten)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Ejemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
     this.txtVertice = new MetroFramework.Controls.MetroTextBox();
     this.btnCancelar = new MetroFramework.Controls.MetroButton();
     this.btnAceptar = new MetroFramework.Controls.MetroButton();
     this.VerticeStyleManager = new MetroFramework.Components.MetroStyleManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.VerticeStyleManager)).BeginInit();
     this.SuspendLayout();
     //
     // metroLabel1
     //
     this.metroLabel1.AutoSize = true;
     this.metroLabel1.FontSize = MetroFramework.MetroLabelSize.Tall;
     this.metroLabel1.Location = new System.Drawing.Point(23, 67);
     this.metroLabel1.Name = "metroLabel1";
     this.metroLabel1.Size = new System.Drawing.Size(162, 25);
     this.metroLabel1.TabIndex = 12;
     this.metroLabel1.Text = "Valor nuevo vertice:";
     this.metroLabel1.UseStyleColors = true;
     //
     // txtVertice
     //
     //
     //
     //
     this.txtVertice.CustomButton.Image = null;
     this.txtVertice.CustomButton.Location = new System.Drawing.Point(71, 2);
     this.txtVertice.CustomButton.Name = "";
     this.txtVertice.CustomButton.Size = new System.Drawing.Size(23, 23);
     this.txtVertice.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
     this.txtVertice.CustomButton.TabIndex = 1;
     this.txtVertice.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
     this.txtVertice.CustomButton.UseSelectable = true;
     this.txtVertice.CustomButton.Visible = false;
     this.txtVertice.FontSize = MetroFramework.MetroTextBoxSize.Tall;
     this.txtVertice.Lines = new string[0];
     this.txtVertice.Location = new System.Drawing.Point(189, 65);
     this.txtVertice.MaxLength = 32767;
     this.txtVertice.Name = "txtVertice";
     this.txtVertice.PasswordChar = '\0';
     this.txtVertice.PromptText = "#";
     this.txtVertice.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtVertice.SelectedText = "";
     this.txtVertice.SelectionLength = 0;
     this.txtVertice.SelectionStart = 0;
     this.txtVertice.ShortcutsEnabled = true;
     this.txtVertice.Size = new System.Drawing.Size(97, 28);
     this.txtVertice.TabIndex = 11;
     this.txtVertice.UseSelectable = true;
     this.txtVertice.UseStyleColors = true;
     this.txtVertice.WaterMark = "#";
     this.txtVertice.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
     this.txtVertice.WaterMarkFont = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVertice.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtVertice_KeyDown);
     //
     // btnCancelar
     //
     this.btnCancelar.FontSize = MetroFramework.MetroButtonSize.Tall;
     this.btnCancelar.Highlight = true;
     this.btnCancelar.Location = new System.Drawing.Point(186, 114);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(100, 23);
     this.btnCancelar.TabIndex = 10;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseSelectable = true;
     this.btnCancelar.UseStyleColors = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnAceptar
     //
     this.btnAceptar.FontSize = MetroFramework.MetroButtonSize.Tall;
     this.btnAceptar.Highlight = true;
     this.btnAceptar.Location = new System.Drawing.Point(23, 114);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(100, 23);
     this.btnAceptar.TabIndex = 9;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseSelectable = true;
     this.btnAceptar.UseStyleColors = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // VerticeStyleManager
     //
     this.VerticeStyleManager.Owner = this;
     this.VerticeStyleManager.Theme = MetroFramework.MetroThemeStyle.Dark;
     //
     // Vertice
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(309, 158);
     this.Controls.Add(this.metroLabel1);
     this.Controls.Add(this.txtVertice);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.btnAceptar);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Vertice";
     this.Resizable = false;
     this.Text = "Agregar nuevo vertice";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Vertice_FormClosing);
     this.Load += new System.EventHandler(this.Vertice_Load);
     this.Shown += new System.EventHandler(this.Vertice_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.VerticeStyleManager)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDerivacion));
     this.dgvDerivaciones = new MetroFramework.Controls.MetroGrid();
     this.metroLabel2 = new MetroFramework.Controls.MetroLabel();
     this.txtPaciente = new MetroFramework.Controls.MetroTextBox();
     this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
     this.metroLabel3 = new MetroFramework.Controls.MetroLabel();
     this.metroLabel4 = new MetroFramework.Controls.MetroLabel();
     this.metroLabel5 = new MetroFramework.Controls.MetroLabel();
     this.txtHistoria = new MetroFramework.Controls.MetroTextBox();
     this.gbDerivacion = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new MetroFramework.Controls.MetroButton();
     this.btnGuardar = new MetroFramework.Controls.MetroButton();
     this.dtpFecha = new MetroFramework.Controls.MetroDateTime();
     this.metroLabel6 = new MetroFramework.Controls.MetroLabel();
     this.txtCie = new MetroFramework.Controls.MetroTextBox();
     this.metroTextBox1 = new MetroFramework.Controls.MetroTextBox();
     this.txtEspecialidad = new MetroFramework.Controls.MetroTextBox();
     this.txtEESS = new MetroFramework.Controls.MetroTextBox();
     this.txtdcie = new MetroFramework.Controls.MetroTextBox();
     this.metroLabel7 = new MetroFramework.Controls.MetroLabel();
     this.btnNuevo = new MetroFramework.Controls.MetroButton();
     this.btnSalir = new MetroFramework.Controls.MetroButton();
     this.mtFiltro = new MetroFramework.Controls.MetroGrid();
     ((System.ComponentModel.ISupportInitialize)(this.dgvDerivaciones)).BeginInit();
     this.gbDerivacion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mtFiltro)).BeginInit();
     this.SuspendLayout();
     //
     // dgvDerivaciones
     //
     this.dgvDerivaciones.AllowUserToResizeRows = false;
     this.dgvDerivaciones.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.dgvDerivaciones.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dgvDerivaciones.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dgvDerivaciones.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvDerivaciones.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvDerivaciones.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(136)))), ((int)(((byte)(136)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvDerivaciones.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvDerivaciones.EnableHeadersVisualStyles = false;
     this.dgvDerivaciones.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.dgvDerivaciones.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.dgvDerivaciones.Location = new System.Drawing.Point(24, 107);
     this.dgvDerivaciones.Name = "dgvDerivaciones";
     this.dgvDerivaciones.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvDerivaciones.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dgvDerivaciones.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dgvDerivaciones.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvDerivaciones.Size = new System.Drawing.Size(508, 305);
     this.dgvDerivaciones.TabIndex = 2;
     //
     // metroLabel2
     //
     this.metroLabel2.AutoSize = true;
     this.metroLabel2.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel2.Location = new System.Drawing.Point(24, 70);
     this.metroLabel2.Name = "metroLabel2";
     this.metroLabel2.Size = new System.Drawing.Size(130, 19);
     this.metroLabel2.TabIndex = 0;
     this.metroLabel2.Text = "N° Historia Clínica";
     //
     // txtPaciente
     //
     this.txtPaciente.Lines = new string[0];
     this.txtPaciente.Location = new System.Drawing.Point(159, 71);
     this.txtPaciente.MaxLength = 32767;
     this.txtPaciente.Name = "txtPaciente";
     this.txtPaciente.PasswordChar = '\0';
     this.txtPaciente.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtPaciente.SelectedText = "";
     this.txtPaciente.Size = new System.Drawing.Size(170, 23);
     this.txtPaciente.TabIndex = 3;
     this.txtPaciente.UseSelectable = true;
     //
     // metroLabel1
     //
     this.metroLabel1.AutoSize = true;
     this.metroLabel1.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel1.Location = new System.Drawing.Point(11, 35);
     this.metroLabel1.Name = "metroLabel1";
     this.metroLabel1.Size = new System.Drawing.Size(82, 19);
     this.metroLabel1.TabIndex = 0;
     this.metroLabel1.Text = "N° Historia";
     //
     // metroLabel3
     //
     this.metroLabel3.AutoSize = true;
     this.metroLabel3.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel3.Location = new System.Drawing.Point(11, 156);
     this.metroLabel3.Name = "metroLabel3";
     this.metroLabel3.Size = new System.Drawing.Size(92, 19);
     this.metroLabel3.TabIndex = 0;
     this.metroLabel3.Text = "Especialidad";
     //
     // metroLabel4
     //
     this.metroLabel4.AutoSize = true;
     this.metroLabel4.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel4.Location = new System.Drawing.Point(11, 79);
     this.metroLabel4.Name = "metroLabel4";
     this.metroLabel4.Size = new System.Drawing.Size(88, 19);
     this.metroLabel4.TabIndex = 0;
     this.metroLabel4.Text = "Diagnóstico";
     //
     // metroLabel5
     //
     this.metroLabel5.AutoSize = true;
     this.metroLabel5.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel5.Location = new System.Drawing.Point(11, 118);
     this.metroLabel5.Name = "metroLabel5";
     this.metroLabel5.Size = new System.Drawing.Size(99, 19);
     this.metroLabel5.TabIndex = 0;
     this.metroLabel5.Text = "Centro Salud ";
     //
     // txtHistoria
     //
     this.txtHistoria.Lines = new string[0];
     this.txtHistoria.Location = new System.Drawing.Point(117, 35);
     this.txtHistoria.MaxLength = 32767;
     this.txtHistoria.Name = "txtHistoria";
     this.txtHistoria.PasswordChar = '\0';
     this.txtHistoria.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtHistoria.SelectedText = "";
     this.txtHistoria.Size = new System.Drawing.Size(118, 23);
     this.txtHistoria.TabIndex = 4;
     this.txtHistoria.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtHistoria.UseSelectable = true;
     //
     // gbDerivacion
     //
     this.gbDerivacion.Controls.Add(this.btnCancelar);
     this.gbDerivacion.Controls.Add(this.btnGuardar);
     this.gbDerivacion.Controls.Add(this.dtpFecha);
     this.gbDerivacion.Controls.Add(this.metroLabel6);
     this.gbDerivacion.Controls.Add(this.txtCie);
     this.gbDerivacion.Controls.Add(this.metroTextBox1);
     this.gbDerivacion.Controls.Add(this.txtEspecialidad);
     this.gbDerivacion.Controls.Add(this.txtEESS);
     this.gbDerivacion.Controls.Add(this.txtdcie);
     this.gbDerivacion.Controls.Add(this.txtHistoria);
     this.gbDerivacion.Controls.Add(this.metroLabel1);
     this.gbDerivacion.Controls.Add(this.metroLabel7);
     this.gbDerivacion.Controls.Add(this.metroLabel3);
     this.gbDerivacion.Controls.Add(this.metroLabel5);
     this.gbDerivacion.Controls.Add(this.metroLabel4);
     this.gbDerivacion.Font = new System.Drawing.Font("Lucida Console", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbDerivacion.Location = new System.Drawing.Point(538, 54);
     this.gbDerivacion.Name = "gbDerivacion";
     this.gbDerivacion.Size = new System.Drawing.Size(511, 358);
     this.gbDerivacion.TabIndex = 5;
     this.gbDerivacion.TabStop = false;
     this.gbDerivacion.Text = "DERIVACION";
     //
     // btnCancelar
     //
     this.btnCancelar.BackgroundImage = global::SeguroIntegral.Escritorio.Properties.Resources.cancel;
     this.btnCancelar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnCancelar.FontSize = MetroFramework.MetroButtonSize.Medium;
     this.btnCancelar.Location = new System.Drawing.Point(378, 295);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(119, 31);
     this.btnCancelar.TabIndex = 6;
     this.btnCancelar.Text = "&CANCELAR";
     this.btnCancelar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancelar.UseSelectable = true;
     //
     // btnGuardar
     //
     this.btnGuardar.BackgroundImage = global::SeguroIntegral.Escritorio.Properties.Resources.save;
     this.btnGuardar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnGuardar.FontSize = MetroFramework.MetroButtonSize.Medium;
     this.btnGuardar.Location = new System.Drawing.Point(11, 295);
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Size = new System.Drawing.Size(107, 31);
     this.btnGuardar.TabIndex = 6;
     this.btnGuardar.Text = "&GRABAR";
     this.btnGuardar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGuardar.UseSelectable = true;
     //
     // dtpFecha
     //
     this.dtpFecha.FontWeight = MetroFramework.MetroDateTimeWeight.Bold;
     this.dtpFecha.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpFecha.Location = new System.Drawing.Point(312, 29);
     this.dtpFecha.MinimumSize = new System.Drawing.Size(0, 29);
     this.dtpFecha.Name = "dtpFecha";
     this.dtpFecha.Size = new System.Drawing.Size(151, 29);
     this.dtpFecha.TabIndex = 6;
     //
     // metroLabel6
     //
     this.metroLabel6.AutoSize = true;
     this.metroLabel6.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel6.Location = new System.Drawing.Point(259, 35);
     this.metroLabel6.Name = "metroLabel6";
     this.metroLabel6.Size = new System.Drawing.Size(47, 19);
     this.metroLabel6.TabIndex = 5;
     this.metroLabel6.Text = "Fecha";
     //
     // txtCie
     //
     this.txtCie.Lines = new string[0];
     this.txtCie.Location = new System.Drawing.Point(117, 75);
     this.txtCie.MaxLength = 32767;
     this.txtCie.Name = "txtCie";
     this.txtCie.PasswordChar = '\0';
     this.txtCie.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtCie.SelectedText = "";
     this.txtCie.Size = new System.Drawing.Size(62, 23);
     this.txtCie.TabIndex = 4;
     this.txtCie.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtCie.UseSelectable = true;
     this.txtCie.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCie_KeyDown);
     //
     // metroTextBox1
     //
     this.metroTextBox1.Lines = new string[0];
     this.metroTextBox1.Location = new System.Drawing.Point(117, 190);
     this.metroTextBox1.MaxLength = 32767;
     this.metroTextBox1.Multiline = true;
     this.metroTextBox1.Name = "metroTextBox1";
     this.metroTextBox1.PasswordChar = '\0';
     this.metroTextBox1.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.metroTextBox1.SelectedText = "";
     this.metroTextBox1.Size = new System.Drawing.Size(380, 84);
     this.metroTextBox1.TabIndex = 4;
     this.metroTextBox1.UseSelectable = true;
     //
     // txtEspecialidad
     //
     this.txtEspecialidad.Lines = new string[0];
     this.txtEspecialidad.Location = new System.Drawing.Point(117, 152);
     this.txtEspecialidad.MaxLength = 32767;
     this.txtEspecialidad.Name = "txtEspecialidad";
     this.txtEspecialidad.PasswordChar = '\0';
     this.txtEspecialidad.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtEspecialidad.SelectedText = "";
     this.txtEspecialidad.Size = new System.Drawing.Size(380, 23);
     this.txtEspecialidad.TabIndex = 4;
     this.txtEspecialidad.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtEspecialidad.UseSelectable = true;
     //
     // txtEESS
     //
     this.txtEESS.Lines = new string[0];
     this.txtEESS.Location = new System.Drawing.Point(117, 114);
     this.txtEESS.MaxLength = 32767;
     this.txtEESS.Name = "txtEESS";
     this.txtEESS.PasswordChar = '\0';
     this.txtEESS.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtEESS.SelectedText = "";
     this.txtEESS.Size = new System.Drawing.Size(380, 23);
     this.txtEESS.TabIndex = 4;
     this.txtEESS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtEESS.UseSelectable = true;
     //
     // txtdcie
     //
     this.txtdcie.Lines = new string[0];
     this.txtdcie.Location = new System.Drawing.Point(185, 75);
     this.txtdcie.MaxLength = 32767;
     this.txtdcie.Name = "txtdcie";
     this.txtdcie.PasswordChar = '\0';
     this.txtdcie.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.txtdcie.SelectedText = "";
     this.txtdcie.Size = new System.Drawing.Size(312, 23);
     this.txtdcie.TabIndex = 4;
     this.txtdcie.UseSelectable = true;
     //
     // metroLabel7
     //
     this.metroLabel7.AutoSize = true;
     this.metroLabel7.FontWeight = MetroFramework.MetroLabelWeight.Bold;
     this.metroLabel7.Location = new System.Drawing.Point(11, 190);
     this.metroLabel7.Name = "metroLabel7";
     this.metroLabel7.Size = new System.Drawing.Size(107, 19);
     this.metroLabel7.TabIndex = 0;
     this.metroLabel7.Text = "Observaciones";
     //
     // btnNuevo
     //
     this.btnNuevo.BackgroundImage = global::SeguroIntegral.Escritorio.Properties.Resources._new;
     this.btnNuevo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnNuevo.FontSize = MetroFramework.MetroButtonSize.Medium;
     this.btnNuevo.Location = new System.Drawing.Point(335, 63);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(86, 31);
     this.btnNuevo.TabIndex = 6;
     this.btnNuevo.Text = "&NUEVO";
     this.btnNuevo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNuevo.UseSelectable = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnSalir
     //
     this.btnSalir.BackgroundImage = global::SeguroIntegral.Escritorio.Properties.Resources.close;
     this.btnSalir.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.btnSalir.FontSize = MetroFramework.MetroButtonSize.Medium;
     this.btnSalir.Location = new System.Drawing.Point(443, 63);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(89, 31);
     this.btnSalir.TabIndex = 6;
     this.btnSalir.Text = "&SALIR";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseSelectable = true;
     //
     // mtFiltro
     //
     this.mtFiltro.AllowUserToResizeRows = false;
     this.mtFiltro.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.mtFiltro.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.mtFiltro.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.mtFiltro.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.mtFiltro.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.mtFiltro.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(136)))), ((int)(((byte)(136)))));
     dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.mtFiltro.DefaultCellStyle = dataGridViewCellStyle5;
     this.mtFiltro.EnableHeadersVisualStyles = false;
     this.mtFiltro.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.mtFiltro.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.mtFiltro.Location = new System.Drawing.Point(538, 446);
     this.mtFiltro.Name = "mtFiltro";
     this.mtFiltro.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(174)))), ((int)(((byte)(219)))));
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.mtFiltro.RowHeadersDefaultCellStyle = dataGridViewCellStyle6;
     this.mtFiltro.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.mtFiltro.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.mtFiltro.Size = new System.Drawing.Size(491, 150);
     this.mtFiltro.TabIndex = 7;
     //
     // frmDerivacion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackImage = global::SeguroIntegral.Escritorio.Properties.Resources.GitHub_Mark;
     this.BackImagePadding = new System.Windows.Forms.Padding(350, 15, 0, 0);
     this.BackMaxSize = 45;
     this.BorderStyle = MetroFramework.Forms.MetroFormBorderStyle.FixedSingle;
     this.ClientSize = new System.Drawing.Size(1067, 456);
     this.Controls.Add(this.mtFiltro);
     this.Controls.Add(this.btnSalir);
     this.Controls.Add(this.btnNuevo);
     this.Controls.Add(this.txtPaciente);
     this.Controls.Add(this.dgvDerivaciones);
     this.Controls.Add(this.metroLabel2);
     this.Controls.Add(this.gbDerivacion);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "frmDerivacion";
     this.Text = "DERIVACION  PACIENTE EE.SS";
     ((System.ComponentModel.ISupportInitialize)(this.dgvDerivaciones)).EndInit();
     this.gbDerivacion.ResumeLayout(false);
     this.gbDerivacion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mtFiltro)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.label3 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.label_separator = new System.Windows.Forms.Label();
     this.status_label = new System.Windows.Forms.Label();
     this.textbox_password = new System.Windows.Forms.TextBox();
     this.textbox_username = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.spining_progress_indicator = new ProgressControls.ProgressIndicator();
     this.metroButton1 = new MetroFramework.Controls.MetroButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.button_login = new MetroFramework.Controls.MetroButton();
     this.label5 = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // timer1
     //
     this.timer1.Interval = 5000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label3.Location = new System.Drawing.Point(-254, 293);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(0, 13);
     this.label3.TabIndex = 18;
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label_separator);
     this.panel1.Controls.Add(this.status_label);
     this.panel1.Controls.Add(this.textbox_password);
     this.panel1.Controls.Add(this.textbox_username);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(6, 69);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(405, 162);
     this.panel1.TabIndex = 20;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label4.Location = new System.Drawing.Point(-35, 147);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(477, 1);
     this.label4.TabIndex = 39;
     //
     // label_separator
     //
     this.label_separator.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label_separator.Location = new System.Drawing.Point(10, 35);
     this.label_separator.Name = "label_separator";
     this.label_separator.Size = new System.Drawing.Size(340, 1);
     this.label_separator.TabIndex = 28;
     //
     // status_label
     //
     this.status_label.AutoSize = true;
     this.status_label.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.status_label.ForeColor = System.Drawing.SystemColors.ControlLight;
     this.status_label.Location = new System.Drawing.Point(13, 9);
     this.status_label.Name = "status_label";
     this.status_label.Size = new System.Drawing.Size(334, 22);
     this.status_label.TabIndex = 27;
     this.status_label.Text = "Welcome. Please Enter Your Credentials Here";
     this.status_label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textbox_password
     //
     this.textbox_password.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.textbox_password.Font = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textbox_password.Location = new System.Drawing.Point(98, 106);
     this.textbox_password.Name = "textbox_password";
     this.textbox_password.PasswordChar = '*';
     this.textbox_password.Size = new System.Drawing.Size(252, 30);
     this.textbox_password.TabIndex = 23;
     //
     // textbox_username
     //
     this.textbox_username.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.textbox_username.Font = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textbox_username.Location = new System.Drawing.Point(98, 59);
     this.textbox_username.Multiline = true;
     this.textbox_username.Name = "textbox_username";
     this.textbox_username.Size = new System.Drawing.Size(252, 27);
     this.textbox_username.TabIndex = 22;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label2.Location = new System.Drawing.Point(13, 111);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(75, 22);
     this.label2.TabIndex = 21;
     this.label2.Text = "Password";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.label1.Location = new System.Drawing.Point(13, 59);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(79, 22);
     this.label1.TabIndex = 20;
     this.label1.Text = "Username";
     //
     // spining_progress_indicator
     //
     this.spining_progress_indicator.BackColor = System.Drawing.Color.Transparent;
     this.spining_progress_indicator.CircleColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.spining_progress_indicator.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.spining_progress_indicator.ForeColor = System.Drawing.SystemColors.ControlLight;
     this.spining_progress_indicator.Location = new System.Drawing.Point(24, 4);
     this.spining_progress_indicator.Name = "spining_progress_indicator";
     this.spining_progress_indicator.Percentage = 0F;
     this.spining_progress_indicator.ShowText = true;
     this.spining_progress_indicator.Size = new System.Drawing.Size(53, 53);
     this.spining_progress_indicator.TabIndex = 22;
     this.spining_progress_indicator.Text = "Wait...";
     this.spining_progress_indicator.TextDisplay = ProgressControls.TextDisplayModes.Text;
     //
     // metroButton1
     //
     this.metroButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.metroButton1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.metroButton1.Location = new System.Drawing.Point(17, 26);
     this.metroButton1.Name = "metroButton1";
     this.metroButton1.Size = new System.Drawing.Size(30, 32);
     this.metroButton1.TabIndex = 26;
     this.metroButton1.Text = ">>";
     this.metroButton1.UseSelectable = true;
     this.metroButton1.Click += new System.EventHandler(this.SetUpButton_Click);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.metroButton1);
     this.panel2.Controls.Add(this.button_login);
     this.panel2.Location = new System.Drawing.Point(6, 222);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(405, 84);
     this.panel2.TabIndex = 21;
     //
     // button_login
     //
     this.button_login.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button_login.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button_login.Location = new System.Drawing.Point(118, 12);
     this.button_login.Name = "button_login";
     this.button_login.Size = new System.Drawing.Size(210, 57);
     this.button_login.TabIndex = 25;
     this.button_login.Text = "LOGIN";
     this.button_login.UseSelectable = true;
     this.button_login.Click += new System.EventHandler(this.user_login_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label5.Location = new System.Drawing.Point(-42, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(477, 1);
     this.label5.TabIndex = 39;
     //
     // LoginForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(422, 316);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.spining_progress_indicator);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label3);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "LoginForm";
     this.Resizable = false;
     this.ShadowType = MetroFramework.Forms.MetroFormShadowType.AeroShadow;
     this.ShowIcon = false;
     this.Text = "LOG!N";
     this.TextAlign = MetroFramework.Forms.MetroFormTextAlign.Center;
     this.Theme = MetroFramework.MetroThemeStyle.Dark;
     this.Load += new System.EventHandler(this.LoginForm_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 41
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            MetroFramework.Controls.MetroButton btnSave;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.btnSetBotPath = new MetroFramework.Controls.MetroButton();
            this.btnDeleteLogin = new MetroFramework.Controls.MetroButton();
            this.btnLogin = new MetroFramework.Controls.MetroButton();
            this.txtBoxLoginName = new MetroFramework.Controls.MetroTextBox();
            this.metroStyleManager = new MetroFramework.Components.MetroStyleManager();
            this.lblLogin = new MetroFramework.Controls.MetroLabel();
            this.btnEdit = new MetroFramework.Controls.MetroButton();
            this.btnCancel = new MetroFramework.Controls.MetroButton();
            this.txtBoxPassword = new MetroFramework.Controls.MetroTextBox();
            this.chkBoxSound = new MetroFramework.Controls.MetroCheckBox();
            this.lblPassword = new MetroFramework.Controls.MetroLabel();
            this.metroTabControl1 = new MetroFramework.Controls.MetroTabControl();
            this.metroTabPage1 = new MetroFramework.Controls.MetroTabPage();
            this.metroTabControl2 = new MetroFramework.Controls.MetroTabControl();
            this.metroTabPage4 = new MetroFramework.Controls.MetroTabPage();
            this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
            this.metroTabPage2 = new MetroFramework.Controls.MetroTabPage();
            this.btnSetRestartDelay = new MetroFramework.Controls.MetroButton();
            this.btnDeleteIp = new MetroFramework.Controls.MetroButton();
            this.btnAddIP = new MetroFramework.Controls.MetroButton();
            this.chkBoxNewIp = new MetroFramework.Controls.MetroCheckBox();
            this.btnSetLaunchDelay = new MetroFramework.Controls.MetroButton();
            this.chkBoxMinimize = new MetroFramework.Controls.MetroCheckBox();
            this.metroButton13 = new MetroFramework.Controls.MetroButton();
            this.metroButton1 = new MetroFramework.Controls.MetroButton();
            this.btnLoad = new MetroFramework.Controls.MetroButton();
            this.metroTabPage5 = new MetroFramework.Controls.MetroTabPage();
            this.logBox = new System.Windows.Forms.ListBox();
            this.metroTabPage3 = new MetroFramework.Controls.MetroTabPage();
            this.metroButton12 = new MetroFramework.Controls.MetroButton();
            this.metroButton11 = new MetroFramework.Controls.MetroButton();
            this.metroButton10 = new MetroFramework.Controls.MetroButton();
            this.metroButton9 = new MetroFramework.Controls.MetroButton();
            this.metroButton8 = new MetroFramework.Controls.MetroButton();
            this.metroButton7 = new MetroFramework.Controls.MetroButton();
            this.metroButton6 = new MetroFramework.Controls.MetroButton();
            this.metroButton5 = new MetroFramework.Controls.MetroButton();
            this.metroButton4 = new MetroFramework.Controls.MetroButton();
            this.metroButton3 = new MetroFramework.Controls.MetroButton();
            this.metroButton2 = new MetroFramework.Controls.MetroButton();
            this.btnHelp1 = new MetroFramework.Controls.MetroButton();
            this.picBoxLogoMinion = new System.Windows.Forms.PictureBox();
            this.tileChangeTheme = new MetroFramework.Controls.MetroTile();
            this.tileChangeColor = new MetroFramework.Controls.MetroTile();
            this.tileStartAll = new MetroFramework.Controls.MetroTile();
            this.tileStopAll = new MetroFramework.Controls.MetroTile();
            btnSave = new MetroFramework.Controls.MetroButton();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.metroTabControl1.SuspendLayout();
            this.metroTabPage1.SuspendLayout();
            this.metroTabControl2.SuspendLayout();
            this.metroTabPage4.SuspendLayout();
            this.metroTabPage2.SuspendLayout();
            this.metroTabPage5.SuspendLayout();
            this.metroTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picBoxLogoMinion)).BeginInit();
            this.SuspendLayout();
            // 
            // btnSave
            // 
            btnSave.Highlight = true;
            resources.ApplyResources(btnSave, "btnSave");
            btnSave.Name = "btnSave";
            btnSave.Style = MetroFramework.MetroColorStyle.Blue;
            btnSave.StyleManager = null;
            btnSave.Theme = MetroFramework.MetroThemeStyle.Dark;
            btnSave.Click += new System.EventHandler(this.BtnSaveClick);
            // 
            // splitContainer2
            // 
            this.splitContainer2.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.splitContainer2, "splitContainer2");
            this.splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.BackColor = System.Drawing.Color.Transparent;
            this.splitContainer2.Panel1.Controls.Add(this.btnSetBotPath);
            this.splitContainer2.Panel1.Controls.Add(this.btnDeleteLogin);
            this.splitContainer2.Panel1.Controls.Add(this.btnLogin);
            this.splitContainer2.Panel1.Controls.Add(this.txtBoxLoginName);
            this.splitContainer2.Panel1.Controls.Add(this.lblLogin);
            this.splitContainer2.Panel1.Controls.Add(this.btnEdit);
            // 
            // splitContainer2.Panel2
            // 
            resources.ApplyResources(this.splitContainer2.Panel2, "splitContainer2.Panel2");
            this.splitContainer2.Panel2.BackColor = System.Drawing.Color.Transparent;
            this.splitContainer2.Panel2.Controls.Add(this.btnCancel);
            this.splitContainer2.Panel2.Controls.Add(this.txtBoxPassword);
            this.splitContainer2.Panel2.Controls.Add(this.chkBoxSound);
            this.splitContainer2.Panel2.Controls.Add(this.lblPassword);
            // 
            // btnSetBotPath
            // 
            resources.ApplyResources(this.btnSetBotPath, "btnSetBotPath");
            this.btnSetBotPath.Highlight = false;
            this.btnSetBotPath.Name = "btnSetBotPath";
            this.btnSetBotPath.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnSetBotPath.StyleManager = null;
            this.btnSetBotPath.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnSetBotPath.Click += new System.EventHandler(this.BtnSetBotPathClick);
            // 
            // btnDeleteLogin
            // 
            this.btnDeleteLogin.Highlight = false;
            resources.ApplyResources(this.btnDeleteLogin, "btnDeleteLogin");
            this.btnDeleteLogin.Name = "btnDeleteLogin";
            this.btnDeleteLogin.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnDeleteLogin.StyleManager = null;
            this.btnDeleteLogin.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnDeleteLogin.Click += new System.EventHandler(this.BtnDeleteLoginClick);
            // 
            // btnLogin
            // 
            this.btnLogin.Highlight = false;
            resources.ApplyResources(this.btnLogin, "btnLogin");
            this.btnLogin.Name = "btnLogin";
            this.btnLogin.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnLogin.StyleManager = null;
            this.btnLogin.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnLogin.Click += new System.EventHandler(this.BtnLoginClick);
            // 
            // txtBoxLoginName
            // 
            this.txtBoxLoginName.CustomBackground = false;
            this.txtBoxLoginName.CustomForeColor = false;
            this.txtBoxLoginName.FontSize = MetroFramework.MetroTextBoxSize.Small;
            this.txtBoxLoginName.FontWeight = MetroFramework.MetroTextBoxWeight.Regular;
            resources.ApplyResources(this.txtBoxLoginName, "txtBoxLoginName");
            this.txtBoxLoginName.Multiline = false;
            this.txtBoxLoginName.Name = "txtBoxLoginName";
            this.txtBoxLoginName.SelectedText = "";
            this.txtBoxLoginName.Style = MetroFramework.MetroColorStyle.Blue;
            this.txtBoxLoginName.StyleManager = this.metroStyleManager;
            this.txtBoxLoginName.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.txtBoxLoginName.UseStyleColors = false;
            // 
            // metroStyleManager
            // 
            this.metroStyleManager.OwnerForm = this;
            this.metroStyleManager.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroStyleManager.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // lblLogin
            // 
            resources.ApplyResources(this.lblLogin, "lblLogin");
            this.lblLogin.CustomBackground = false;
            this.lblLogin.CustomForeColor = false;
            this.lblLogin.FontSize = MetroFramework.MetroLabelSize.Medium;
            this.lblLogin.FontWeight = MetroFramework.MetroLabelWeight.Light;
            this.lblLogin.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLogin.Name = "lblLogin";
            this.lblLogin.Style = MetroFramework.MetroColorStyle.Blue;
            this.lblLogin.StyleManager = this.metroStyleManager;
            this.lblLogin.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.lblLogin.UseStyleColors = false;
            // 
            // btnEdit
            // 
            this.btnEdit.Highlight = false;
            resources.ApplyResources(this.btnEdit, "btnEdit");
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnEdit.StyleManager = null;
            this.btnEdit.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnEdit.Click += new System.EventHandler(this.BtnEditClick);
            // 
            // btnCancel
            // 
            this.btnCancel.Highlight = false;
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnCancel.StyleManager = null;
            this.btnCancel.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnCancel.Click += new System.EventHandler(this.BtnCancelClick);
            // 
            // txtBoxPassword
            // 
            this.txtBoxPassword.CustomBackground = false;
            this.txtBoxPassword.CustomForeColor = false;
            this.txtBoxPassword.FontSize = MetroFramework.MetroTextBoxSize.Small;
            this.txtBoxPassword.FontWeight = MetroFramework.MetroTextBoxWeight.Regular;
            resources.ApplyResources(this.txtBoxPassword, "txtBoxPassword");
            this.txtBoxPassword.Multiline = false;
            this.txtBoxPassword.Name = "txtBoxPassword";
            this.txtBoxPassword.SelectedText = "";
            this.txtBoxPassword.Style = MetroFramework.MetroColorStyle.Blue;
            this.txtBoxPassword.StyleManager = this.metroStyleManager;
            this.txtBoxPassword.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.txtBoxPassword.UseStyleColors = false;
            // 
            // chkBoxSound
            // 
            resources.ApplyResources(this.chkBoxSound, "chkBoxSound");
            this.chkBoxSound.CustomBackground = false;
            this.chkBoxSound.CustomForeColor = false;
            this.chkBoxSound.FontSize = MetroFramework.MetroLinkSize.Small;
            this.chkBoxSound.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.chkBoxSound.Name = "chkBoxSound";
            this.chkBoxSound.Style = MetroFramework.MetroColorStyle.Blue;
            this.chkBoxSound.StyleManager = this.metroStyleManager;
            this.chkBoxSound.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.chkBoxSound.UseStyleColors = false;
            this.chkBoxSound.UseVisualStyleBackColor = true;
            // 
            // lblPassword
            // 
            resources.ApplyResources(this.lblPassword, "lblPassword");
            this.lblPassword.CustomBackground = false;
            this.lblPassword.CustomForeColor = false;
            this.lblPassword.FontSize = MetroFramework.MetroLabelSize.Medium;
            this.lblPassword.FontWeight = MetroFramework.MetroLabelWeight.Light;
            this.lblPassword.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblPassword.Name = "lblPassword";
            this.lblPassword.Style = MetroFramework.MetroColorStyle.Blue;
            this.lblPassword.StyleManager = this.metroStyleManager;
            this.lblPassword.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.lblPassword.UseStyleColors = false;
            // 
            // metroTabControl1
            // 
            this.metroTabControl1.Controls.Add(this.metroTabPage1);
            this.metroTabControl1.Controls.Add(this.metroTabPage2);
            this.metroTabControl1.Controls.Add(this.metroTabPage5);
            this.metroTabControl1.Controls.Add(this.metroTabPage3);
            this.metroTabControl1.CustomBackground = false;
            this.metroTabControl1.FontSize = MetroFramework.MetroTabControlSize.Medium;
            this.metroTabControl1.FontWeight = MetroFramework.MetroTabControlWeight.Light;
            resources.ApplyResources(this.metroTabControl1, "metroTabControl1");
            this.metroTabControl1.Name = "metroTabControl1";
            this.metroTabControl1.SelectedIndex = 1;
            this.metroTabControl1.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabControl1.StyleManager = this.metroStyleManager;
            this.metroTabControl1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.metroTabControl1.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabControl1.UseStyleColors = true;
            // 
            // metroTabPage1
            // 
            resources.ApplyResources(this.metroTabPage1, "metroTabPage1");
            this.metroTabPage1.BackColor = System.Drawing.Color.Transparent;
            this.metroTabPage1.Controls.Add(this.metroTabControl2);
            this.metroTabPage1.CustomBackground = false;
            this.metroTabPage1.ForeColor = System.Drawing.Color.Black;
            this.metroTabPage1.HorizontalScrollbar = true;
            this.metroTabPage1.HorizontalScrollbarBarColor = true;
            this.metroTabPage1.HorizontalScrollbarHighlightOnWheel = true;
            this.metroTabPage1.HorizontalScrollbarSize = 10;
            this.metroTabPage1.Name = "metroTabPage1";
            this.metroTabPage1.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabPage1.StyleManager = this.metroStyleManager;
            this.metroTabPage1.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabPage1.VerticalScrollbar = true;
            this.metroTabPage1.VerticalScrollbarBarColor = true;
            this.metroTabPage1.VerticalScrollbarHighlightOnWheel = true;
            this.metroTabPage1.VerticalScrollbarSize = 10;
            // 
            // metroTabControl2
            // 
            this.metroTabControl2.Controls.Add(this.metroTabPage4);
            this.metroTabControl2.CustomBackground = false;
            this.metroTabControl2.FontSize = MetroFramework.MetroTabControlSize.Medium;
            this.metroTabControl2.FontWeight = MetroFramework.MetroTabControlWeight.Light;
            resources.ApplyResources(this.metroTabControl2, "metroTabControl2");
            this.metroTabControl2.Name = "metroTabControl2";
            this.metroTabControl2.SelectedIndex = 0;
            this.metroTabControl2.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabControl2.StyleManager = null;
            this.metroTabControl2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.metroTabControl2.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabControl2.UseStyleColors = true;
            // 
            // metroTabPage4
            // 
            this.metroTabPage4.BackColor = System.Drawing.Color.Transparent;
            this.metroTabPage4.Controls.Add(this.metroLabel1);
            this.metroTabPage4.CustomBackground = false;
            this.metroTabPage4.ForeColor = System.Drawing.Color.Black;
            this.metroTabPage4.HorizontalScrollbar = false;
            this.metroTabPage4.HorizontalScrollbarBarColor = true;
            this.metroTabPage4.HorizontalScrollbarHighlightOnWheel = false;
            this.metroTabPage4.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.metroTabPage4, "metroTabPage4");
            this.metroTabPage4.Name = "metroTabPage4";
            this.metroTabPage4.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabPage4.StyleManager = null;
            this.metroTabPage4.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabPage4.VerticalScrollbar = false;
            this.metroTabPage4.VerticalScrollbarBarColor = true;
            this.metroTabPage4.VerticalScrollbarHighlightOnWheel = false;
            this.metroTabPage4.VerticalScrollbarSize = 10;
            // 
            // metroLabel1
            // 
            resources.ApplyResources(this.metroLabel1, "metroLabel1");
            this.metroLabel1.CustomBackground = false;
            this.metroLabel1.CustomForeColor = false;
            this.metroLabel1.FontSize = MetroFramework.MetroLabelSize.Medium;
            this.metroLabel1.FontWeight = MetroFramework.MetroLabelWeight.Bold;
            this.metroLabel1.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.metroLabel1.Name = "metroLabel1";
            this.metroLabel1.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroLabel1.StyleManager = this.metroStyleManager;
            this.metroLabel1.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroLabel1.UseStyleColors = false;
            // 
            // metroTabPage2
            // 
            this.metroTabPage2.Controls.Add(this.btnSetRestartDelay);
            this.metroTabPage2.Controls.Add(this.btnDeleteIp);
            this.metroTabPage2.Controls.Add(this.btnAddIP);
            this.metroTabPage2.Controls.Add(this.chkBoxNewIp);
            this.metroTabPage2.Controls.Add(this.btnSetLaunchDelay);
            this.metroTabPage2.Controls.Add(this.chkBoxMinimize);
            this.metroTabPage2.Controls.Add(this.metroButton13);
            this.metroTabPage2.Controls.Add(this.metroButton1);
            this.metroTabPage2.Controls.Add(this.btnLoad);
            this.metroTabPage2.Controls.Add(btnSave);
            this.metroTabPage2.Controls.Add(this.splitContainer2);
            this.metroTabPage2.CustomBackground = false;
            this.metroTabPage2.HorizontalScrollbar = false;
            this.metroTabPage2.HorizontalScrollbarBarColor = true;
            this.metroTabPage2.HorizontalScrollbarHighlightOnWheel = false;
            this.metroTabPage2.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.metroTabPage2, "metroTabPage2");
            this.metroTabPage2.Name = "metroTabPage2";
            this.metroTabPage2.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabPage2.StyleManager = this.metroStyleManager;
            this.metroTabPage2.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabPage2.VerticalScrollbar = false;
            this.metroTabPage2.VerticalScrollbarBarColor = true;
            this.metroTabPage2.VerticalScrollbarHighlightOnWheel = false;
            this.metroTabPage2.VerticalScrollbarSize = 10;
            // 
            // btnSetRestartDelay
            // 
            this.btnSetRestartDelay.Highlight = false;
            resources.ApplyResources(this.btnSetRestartDelay, "btnSetRestartDelay");
            this.btnSetRestartDelay.Name = "btnSetRestartDelay";
            this.btnSetRestartDelay.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnSetRestartDelay.StyleManager = null;
            this.btnSetRestartDelay.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnSetRestartDelay.Click += new System.EventHandler(this.BtnSetRestartDelayClick);
            // 
            // btnDeleteIp
            // 
            this.btnDeleteIp.Highlight = false;
            resources.ApplyResources(this.btnDeleteIp, "btnDeleteIp");
            this.btnDeleteIp.Name = "btnDeleteIp";
            this.btnDeleteIp.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnDeleteIp.StyleManager = null;
            this.btnDeleteIp.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnDeleteIp.Click += new System.EventHandler(this.BtnDeleteIpClick);
            // 
            // btnAddIP
            // 
            this.btnAddIP.Highlight = false;
            resources.ApplyResources(this.btnAddIP, "btnAddIP");
            this.btnAddIP.Name = "btnAddIP";
            this.btnAddIP.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnAddIP.StyleManager = null;
            this.btnAddIP.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnAddIP.Click += new System.EventHandler(this.BtnAddIPClick);
            // 
            // chkBoxNewIp
            // 
            resources.ApplyResources(this.chkBoxNewIp, "chkBoxNewIp");
            this.chkBoxNewIp.CustomBackground = false;
            this.chkBoxNewIp.CustomForeColor = false;
            this.chkBoxNewIp.FontSize = MetroFramework.MetroLinkSize.Small;
            this.chkBoxNewIp.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.chkBoxNewIp.Name = "chkBoxNewIp";
            this.chkBoxNewIp.Style = MetroFramework.MetroColorStyle.Blue;
            this.chkBoxNewIp.StyleManager = null;
            this.chkBoxNewIp.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.chkBoxNewIp.UseStyleColors = false;
            this.chkBoxNewIp.UseVisualStyleBackColor = true;
            this.chkBoxNewIp.CheckedChanged += new System.EventHandler(this.ChkBoxNewIpCheckedChanged);
            // 
            // btnSetLaunchDelay
            // 
            this.btnSetLaunchDelay.Highlight = false;
            resources.ApplyResources(this.btnSetLaunchDelay, "btnSetLaunchDelay");
            this.btnSetLaunchDelay.Name = "btnSetLaunchDelay";
            this.btnSetLaunchDelay.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnSetLaunchDelay.StyleManager = null;
            this.btnSetLaunchDelay.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnSetLaunchDelay.Click += new System.EventHandler(this.BtnSetLaunchDelayClick);
            // 
            // chkBoxMinimize
            // 
            resources.ApplyResources(this.chkBoxMinimize, "chkBoxMinimize");
            this.chkBoxMinimize.CustomBackground = false;
            this.chkBoxMinimize.CustomForeColor = false;
            this.chkBoxMinimize.FontSize = MetroFramework.MetroLinkSize.Small;
            this.chkBoxMinimize.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.chkBoxMinimize.Name = "chkBoxMinimize";
            this.chkBoxMinimize.Style = MetroFramework.MetroColorStyle.Blue;
            this.chkBoxMinimize.StyleManager = null;
            this.chkBoxMinimize.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.chkBoxMinimize.UseStyleColors = false;
            this.chkBoxMinimize.UseVisualStyleBackColor = true;
            this.chkBoxMinimize.CheckedChanged += new System.EventHandler(this.ChkBoxMinimizeCheckedChanged);
            // 
            // metroButton13
            // 
            this.metroButton13.Highlight = false;
            resources.ApplyResources(this.metroButton13, "metroButton13");
            this.metroButton13.Name = "metroButton13";
            this.metroButton13.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton13.StyleManager = null;
            this.metroButton13.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroButton13.Click += new System.EventHandler(this.BtnSetDelayClick);
            // 
            // metroButton1
            // 
            this.metroButton1.Highlight = false;
            resources.ApplyResources(this.metroButton1, "metroButton1");
            this.metroButton1.Name = "metroButton1";
            this.metroButton1.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton1.StyleManager = null;
            this.metroButton1.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroButton1.Click += new System.EventHandler(this.BtnSetPathClick);
            // 
            // btnLoad
            // 
            this.btnLoad.Highlight = true;
            resources.ApplyResources(this.btnLoad, "btnLoad");
            this.btnLoad.Name = "btnLoad";
            this.btnLoad.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnLoad.StyleManager = null;
            this.btnLoad.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.btnLoad.Click += new System.EventHandler(this.BtnLoadClick);
            // 
            // metroTabPage5
            // 
            this.metroTabPage5.BackColor = System.Drawing.Color.Transparent;
            this.metroTabPage5.Controls.Add(this.logBox);
            this.metroTabPage5.CustomBackground = false;
            this.metroTabPage5.HorizontalScrollbar = false;
            this.metroTabPage5.HorizontalScrollbarBarColor = true;
            this.metroTabPage5.HorizontalScrollbarHighlightOnWheel = false;
            this.metroTabPage5.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.metroTabPage5, "metroTabPage5");
            this.metroTabPage5.Name = "metroTabPage5";
            this.metroTabPage5.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabPage5.StyleManager = null;
            this.metroTabPage5.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabPage5.VerticalScrollbar = false;
            this.metroTabPage5.VerticalScrollbarBarColor = true;
            this.metroTabPage5.VerticalScrollbarHighlightOnWheel = false;
            this.metroTabPage5.VerticalScrollbarSize = 10;
            // 
            // logBox
            // 
            this.logBox.FormattingEnabled = true;
            resources.ApplyResources(this.logBox, "logBox");
            this.logBox.Name = "logBox";
            // 
            // metroTabPage3
            // 
            this.metroTabPage3.Controls.Add(this.metroButton12);
            this.metroTabPage3.Controls.Add(this.metroButton11);
            this.metroTabPage3.Controls.Add(this.metroButton10);
            this.metroTabPage3.Controls.Add(this.metroButton9);
            this.metroTabPage3.Controls.Add(this.metroButton8);
            this.metroTabPage3.Controls.Add(this.metroButton7);
            this.metroTabPage3.Controls.Add(this.metroButton6);
            this.metroTabPage3.Controls.Add(this.metroButton5);
            this.metroTabPage3.Controls.Add(this.metroButton4);
            this.metroTabPage3.Controls.Add(this.metroButton3);
            this.metroTabPage3.Controls.Add(this.metroButton2);
            this.metroTabPage3.Controls.Add(this.btnHelp1);
            this.metroTabPage3.CustomBackground = false;
            this.metroTabPage3.HorizontalScrollbar = false;
            this.metroTabPage3.HorizontalScrollbarBarColor = true;
            this.metroTabPage3.HorizontalScrollbarHighlightOnWheel = false;
            this.metroTabPage3.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.metroTabPage3, "metroTabPage3");
            this.metroTabPage3.Name = "metroTabPage3";
            this.metroTabPage3.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroTabPage3.StyleManager = this.metroStyleManager;
            this.metroTabPage3.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.metroTabPage3.VerticalScrollbar = false;
            this.metroTabPage3.VerticalScrollbarBarColor = true;
            this.metroTabPage3.VerticalScrollbarHighlightOnWheel = false;
            this.metroTabPage3.VerticalScrollbarSize = 10;
            // 
            // metroButton12
            // 
            this.metroButton12.Highlight = false;
            resources.ApplyResources(this.metroButton12, "metroButton12");
            this.metroButton12.Name = "metroButton12";
            this.metroButton12.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton12.StyleManager = null;
            this.metroButton12.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton11
            // 
            this.metroButton11.Highlight = false;
            resources.ApplyResources(this.metroButton11, "metroButton11");
            this.metroButton11.Name = "metroButton11";
            this.metroButton11.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton11.StyleManager = null;
            this.metroButton11.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton10
            // 
            this.metroButton10.Highlight = false;
            resources.ApplyResources(this.metroButton10, "metroButton10");
            this.metroButton10.Name = "metroButton10";
            this.metroButton10.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton10.StyleManager = null;
            this.metroButton10.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton9
            // 
            this.metroButton9.Highlight = false;
            resources.ApplyResources(this.metroButton9, "metroButton9");
            this.metroButton9.Name = "metroButton9";
            this.metroButton9.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton9.StyleManager = null;
            this.metroButton9.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton8
            // 
            this.metroButton8.Highlight = false;
            resources.ApplyResources(this.metroButton8, "metroButton8");
            this.metroButton8.Name = "metroButton8";
            this.metroButton8.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton8.StyleManager = null;
            this.metroButton8.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton7
            // 
            this.metroButton7.Highlight = false;
            resources.ApplyResources(this.metroButton7, "metroButton7");
            this.metroButton7.Name = "metroButton7";
            this.metroButton7.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton7.StyleManager = null;
            this.metroButton7.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton6
            // 
            this.metroButton6.Highlight = false;
            resources.ApplyResources(this.metroButton6, "metroButton6");
            this.metroButton6.Name = "metroButton6";
            this.metroButton6.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton6.StyleManager = null;
            this.metroButton6.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton5
            // 
            this.metroButton5.Highlight = false;
            resources.ApplyResources(this.metroButton5, "metroButton5");
            this.metroButton5.Name = "metroButton5";
            this.metroButton5.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton5.StyleManager = null;
            this.metroButton5.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton4
            // 
            this.metroButton4.Highlight = false;
            resources.ApplyResources(this.metroButton4, "metroButton4");
            this.metroButton4.Name = "metroButton4";
            this.metroButton4.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton4.StyleManager = null;
            this.metroButton4.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton3
            // 
            this.metroButton3.Highlight = false;
            resources.ApplyResources(this.metroButton3, "metroButton3");
            this.metroButton3.Name = "metroButton3";
            this.metroButton3.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton3.StyleManager = null;
            this.metroButton3.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // metroButton2
            // 
            this.metroButton2.Highlight = false;
            resources.ApplyResources(this.metroButton2, "metroButton2");
            this.metroButton2.Name = "metroButton2";
            this.metroButton2.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroButton2.StyleManager = null;
            this.metroButton2.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // btnHelp1
            // 
            this.btnHelp1.Highlight = false;
            resources.ApplyResources(this.btnHelp1, "btnHelp1");
            this.btnHelp1.Name = "btnHelp1";
            this.btnHelp1.Style = MetroFramework.MetroColorStyle.Blue;
            this.btnHelp1.StyleManager = null;
            this.btnHelp1.Theme = MetroFramework.MetroThemeStyle.Dark;
            // 
            // picBoxLogoMinion
            // 
            this.picBoxLogoMinion.Image = global::MinionLauncher.Properties.Resources.header;
            resources.ApplyResources(this.picBoxLogoMinion, "picBoxLogoMinion");
            this.picBoxLogoMinion.Name = "picBoxLogoMinion";
            this.picBoxLogoMinion.TabStop = false;
            // 
            // tileChangeTheme
            // 
            this.tileChangeTheme.ActiveControl = null;
            this.tileChangeTheme.CustomBackground = false;
            this.tileChangeTheme.CustomForeColor = false;
            resources.ApplyResources(this.tileChangeTheme, "tileChangeTheme");
            this.tileChangeTheme.Name = "tileChangeTheme";
            this.tileChangeTheme.PaintTileCount = true;
            this.tileChangeTheme.Style = MetroFramework.MetroColorStyle.Blue;
            this.tileChangeTheme.StyleManager = this.metroStyleManager;
            this.tileChangeTheme.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.tileChangeTheme.TileCount = 0;
            this.tileChangeTheme.Click += new System.EventHandler(this.TileChangeThemeClick);
            // 
            // tileChangeColor
            // 
            this.tileChangeColor.ActiveControl = null;
            this.tileChangeColor.CustomBackground = false;
            this.tileChangeColor.CustomForeColor = false;
            resources.ApplyResources(this.tileChangeColor, "tileChangeColor");
            this.tileChangeColor.Name = "tileChangeColor";
            this.tileChangeColor.PaintTileCount = true;
            this.tileChangeColor.Style = MetroFramework.MetroColorStyle.Blue;
            this.tileChangeColor.StyleManager = this.metroStyleManager;
            this.tileChangeColor.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.tileChangeColor.TileCount = 0;
            this.tileChangeColor.Click += new System.EventHandler(this.TileChangeColorClick);
            // 
            // tileStartAll
            // 
            this.tileStartAll.ActiveControl = null;
            this.tileStartAll.CustomBackground = false;
            this.tileStartAll.CustomForeColor = false;
            resources.ApplyResources(this.tileStartAll, "tileStartAll");
            this.tileStartAll.Name = "tileStartAll";
            this.tileStartAll.PaintTileCount = true;
            this.tileStartAll.Style = MetroFramework.MetroColorStyle.Blue;
            this.tileStartAll.StyleManager = this.metroStyleManager;
            this.tileStartAll.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.tileStartAll.TileCount = 0;
            this.tileStartAll.Click += new System.EventHandler(this.TileStartAllClick);
            // 
            // tileStopAll
            // 
            this.tileStopAll.ActiveControl = null;
            this.tileStopAll.CustomBackground = false;
            this.tileStopAll.CustomForeColor = false;
            resources.ApplyResources(this.tileStopAll, "tileStopAll");
            this.tileStopAll.Name = "tileStopAll";
            this.tileStopAll.PaintTileCount = true;
            this.tileStopAll.Style = MetroFramework.MetroColorStyle.Blue;
            this.tileStopAll.StyleManager = this.metroStyleManager;
            this.tileStopAll.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.tileStopAll.TileCount = 0;
            this.tileStopAll.Click += new System.EventHandler(this.TileStopAllClick);
            // 
            // MainForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tileStopAll);
            this.Controls.Add(this.tileStartAll);
            this.Controls.Add(this.tileChangeColor);
            this.Controls.Add(this.tileChangeTheme);
            this.Controls.Add(this.picBoxLogoMinion);
            this.Controls.Add(this.metroTabControl1);
            this.Name = "MainForm";
            this.Resizable = false;
            this.StyleManager = this.metroStyleManager;
            this.Theme = MetroFramework.MetroThemeStyle.Dark;
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel1.PerformLayout();
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
            this.splitContainer2.ResumeLayout(false);
            this.metroTabControl1.ResumeLayout(false);
            this.metroTabPage1.ResumeLayout(false);
            this.metroTabControl2.ResumeLayout(false);
            this.metroTabPage4.ResumeLayout(false);
            this.metroTabPage4.PerformLayout();
            this.metroTabPage2.ResumeLayout(false);
            this.metroTabPage2.PerformLayout();
            this.metroTabPage5.ResumeLayout(false);
            this.metroTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picBoxLogoMinion)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            MetroFramework.Controls.MetroButton cmdGebruikerToevoegen;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBeheerder));
            MetroFramework.Controls.MetroButton cmdVakToevoegen;
            MetroFramework.Controls.MetroButton cmdVakVerwijderen;
            MetroFramework.Controls.MetroButton cmdGebruikerAanpassen;
            MetroFramework.Controls.MetroButton cmdGebruikersToevoegenUitCSV;
            MetroFramework.Controls.MetroButton cmdGebruikerInschrijven;
            this.metroStyleManager1 = new MetroFramework.Components.MetroStyleManager();
            this.lstVakken = new System.Windows.Forms.ListBox();
            this.lstDocentenVakGeven = new System.Windows.Forms.ListBox();
            this.lstStudentenVakVolgen = new System.Windows.Forms.ListBox();
            this.lblTussenTitelChk = new MetroFramework.Controls.MetroLabel();
            this.lblLijstGebruikers = new MetroFramework.Controls.MetroLabel();
            this.lblLijstRollen = new MetroFramework.Controls.MetroLabel();
            this.lblLijstVakken = new MetroFramework.Controls.MetroLabel();
            this.lblLijstDocentenVakGeven = new MetroFramework.Controls.MetroLabel();
            this.lblLijstStudentenVakVolgen = new MetroFramework.Controls.MetroLabel();
            this.tbctrlBeheerder = new MetroFramework.Controls.MetroTabControl();
            this.tabBeheerder = new MetroFramework.Controls.MetroTabPage();
            this.lstRollen = new System.Windows.Forms.ListBox();
            this.radAlleGebruikers = new MetroFramework.Controls.MetroRadioButton();
            this.dgrvGebruikers = new System.Windows.Forms.DataGridView();
            this.radStudenten = new MetroFramework.Controls.MetroRadioButton();
            this.radDocenten = new MetroFramework.Controls.MetroRadioButton();
            this.radBeheerders = new MetroFramework.Controls.MetroRadioButton();
            this.cmdGebruikerVerwijderen = new MetroFramework.Controls.MetroButton();
            this.tabVak = new MetroFramework.Controls.MetroTabPage();
            this.cmdVakAanpassen = new MetroFramework.Controls.MetroButton();
            this.dgrvStudentenBijVak = new System.Windows.Forms.DataGridView();
            this.dgrvDocentenBijVakken = new System.Windows.Forms.DataGridView();
            this.languageControl1 = new PP_Presentation.LanguageControl();
            cmdGebruikerToevoegen = new MetroFramework.Controls.MetroButton();
            cmdVakToevoegen = new MetroFramework.Controls.MetroButton();
            cmdVakVerwijderen = new MetroFramework.Controls.MetroButton();
            cmdGebruikerAanpassen = new MetroFramework.Controls.MetroButton();
            cmdGebruikersToevoegenUitCSV = new MetroFramework.Controls.MetroButton();
            cmdGebruikerInschrijven = new MetroFramework.Controls.MetroButton();
            this.tbctrlBeheerder.SuspendLayout();
            this.tabBeheerder.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvGebruikers)).BeginInit();
            this.tabVak.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvStudentenBijVak)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvDocentenBijVakken)).BeginInit();
            this.SuspendLayout();
            // 
            // cmdGebruikerToevoegen
            // 
            cmdGebruikerToevoegen.Highlight = true;
            resources.ApplyResources(cmdGebruikerToevoegen, "cmdGebruikerToevoegen");
            cmdGebruikerToevoegen.Name = "cmdGebruikerToevoegen";
            cmdGebruikerToevoegen.Style = MetroFramework.MetroColorStyle.Black;
            cmdGebruikerToevoegen.StyleManager = this.metroStyleManager1;
            cmdGebruikerToevoegen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdGebruikerToevoegen.Click += new System.EventHandler(this.cmdGebruikerToevoegen_Click);
            // 
            // metroStyleManager1
            // 
            this.metroStyleManager1.OwnerForm = this;
            this.metroStyleManager1.Style = MetroFramework.MetroColorStyle.Black;
            this.metroStyleManager1.Theme = MetroFramework.MetroThemeStyle.Light;
            // 
            // cmdVakToevoegen
            // 
            cmdVakToevoegen.Highlight = true;
            resources.ApplyResources(cmdVakToevoegen, "cmdVakToevoegen");
            cmdVakToevoegen.Name = "cmdVakToevoegen";
            cmdVakToevoegen.Style = MetroFramework.MetroColorStyle.Black;
            cmdVakToevoegen.StyleManager = this.metroStyleManager1;
            cmdVakToevoegen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdVakToevoegen.Click += new System.EventHandler(this.cmdVakToevoegen_Click);
            // 
            // cmdVakVerwijderen
            // 
            cmdVakVerwijderen.Highlight = true;
            resources.ApplyResources(cmdVakVerwijderen, "cmdVakVerwijderen");
            cmdVakVerwijderen.Name = "cmdVakVerwijderen";
            cmdVakVerwijderen.Style = MetroFramework.MetroColorStyle.Black;
            cmdVakVerwijderen.StyleManager = this.metroStyleManager1;
            cmdVakVerwijderen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdVakVerwijderen.Click += new System.EventHandler(this.cmdVakVerwijderen_Click);
            // 
            // cmdGebruikerAanpassen
            // 
            cmdGebruikerAanpassen.Highlight = true;
            resources.ApplyResources(cmdGebruikerAanpassen, "cmdGebruikerAanpassen");
            cmdGebruikerAanpassen.Name = "cmdGebruikerAanpassen";
            cmdGebruikerAanpassen.Style = MetroFramework.MetroColorStyle.Black;
            cmdGebruikerAanpassen.StyleManager = this.metroStyleManager1;
            cmdGebruikerAanpassen.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdGebruikerAanpassen.Click += new System.EventHandler(this.cmdGebruikerAanpassen_Click);
            // 
            // cmdGebruikersToevoegenUitCSV
            // 
            cmdGebruikersToevoegenUitCSV.Highlight = true;
            resources.ApplyResources(cmdGebruikersToevoegenUitCSV, "cmdGebruikersToevoegenUitCSV");
            cmdGebruikersToevoegenUitCSV.Name = "cmdGebruikersToevoegenUitCSV";
            cmdGebruikersToevoegenUitCSV.Style = MetroFramework.MetroColorStyle.Black;
            cmdGebruikersToevoegenUitCSV.StyleManager = this.metroStyleManager1;
            cmdGebruikersToevoegenUitCSV.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdGebruikersToevoegenUitCSV.Click += new System.EventHandler(this.cmdGebruikersToevoegenUitCSV_Click);
            // 
            // cmdGebruikerInschrijven
            // 
            cmdGebruikerInschrijven.Highlight = true;
            resources.ApplyResources(cmdGebruikerInschrijven, "cmdGebruikerInschrijven");
            cmdGebruikerInschrijven.Name = "cmdGebruikerInschrijven";
            cmdGebruikerInschrijven.Style = MetroFramework.MetroColorStyle.Black;
            cmdGebruikerInschrijven.StyleManager = this.metroStyleManager1;
            cmdGebruikerInschrijven.Theme = MetroFramework.MetroThemeStyle.Light;
            cmdGebruikerInschrijven.Click += new System.EventHandler(this.cmdGebruikerInschrijven_Click);
            // 
            // lstVakken
            // 
            resources.ApplyResources(this.lstVakken, "lstVakken");
            this.lstVakken.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lstVakken.FormattingEnabled = true;
            this.lstVakken.Name = "lstVakken";
            this.lstVakken.SelectedIndexChanged += new System.EventHandler(this.lstVakken_SelectedIndexChanged);
            // 
            // lstDocentenVakGeven
            // 
            resources.ApplyResources(this.lstDocentenVakGeven, "lstDocentenVakGeven");
            this.lstDocentenVakGeven.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lstDocentenVakGeven.FormattingEnabled = true;
            this.lstDocentenVakGeven.Name = "lstDocentenVakGeven";
            // 
            // lstStudentenVakVolgen
            // 
            resources.ApplyResources(this.lstStudentenVakVolgen, "lstStudentenVakVolgen");
            this.lstStudentenVakVolgen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lstStudentenVakVolgen.FormattingEnabled = true;
            this.lstStudentenVakVolgen.Name = "lstStudentenVakVolgen";
            // 
            // lblTussenTitelChk
            // 
            resources.ApplyResources(this.lblTussenTitelChk, "lblTussenTitelChk");
            this.lblTussenTitelChk.CustomBackground = false;
            this.lblTussenTitelChk.CustomForeColor = false;
            this.lblTussenTitelChk.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblTussenTitelChk.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblTussenTitelChk.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblTussenTitelChk.Name = "lblTussenTitelChk";
            this.lblTussenTitelChk.Style = MetroFramework.MetroColorStyle.Black;
            this.lblTussenTitelChk.StyleManager = this.metroStyleManager1;
            this.lblTussenTitelChk.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblTussenTitelChk.UseStyleColors = false;
            // 
            // lblLijstGebruikers
            // 
            resources.ApplyResources(this.lblLijstGebruikers, "lblLijstGebruikers");
            this.lblLijstGebruikers.CustomBackground = false;
            this.lblLijstGebruikers.CustomForeColor = false;
            this.lblLijstGebruikers.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblLijstGebruikers.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblLijstGebruikers.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLijstGebruikers.Name = "lblLijstGebruikers";
            this.lblLijstGebruikers.Style = MetroFramework.MetroColorStyle.Black;
            this.lblLijstGebruikers.StyleManager = this.metroStyleManager1;
            this.lblLijstGebruikers.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblLijstGebruikers.UseStyleColors = false;
            // 
            // lblLijstRollen
            // 
            resources.ApplyResources(this.lblLijstRollen, "lblLijstRollen");
            this.lblLijstRollen.CustomBackground = false;
            this.lblLijstRollen.CustomForeColor = false;
            this.lblLijstRollen.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblLijstRollen.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblLijstRollen.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLijstRollen.Name = "lblLijstRollen";
            this.lblLijstRollen.Style = MetroFramework.MetroColorStyle.Black;
            this.lblLijstRollen.StyleManager = this.metroStyleManager1;
            this.lblLijstRollen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblLijstRollen.UseStyleColors = false;
            // 
            // lblLijstVakken
            // 
            resources.ApplyResources(this.lblLijstVakken, "lblLijstVakken");
            this.lblLijstVakken.CustomBackground = false;
            this.lblLijstVakken.CustomForeColor = false;
            this.lblLijstVakken.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblLijstVakken.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblLijstVakken.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLijstVakken.Name = "lblLijstVakken";
            this.lblLijstVakken.Style = MetroFramework.MetroColorStyle.Black;
            this.lblLijstVakken.StyleManager = this.metroStyleManager1;
            this.lblLijstVakken.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblLijstVakken.UseStyleColors = false;
            // 
            // lblLijstDocentenVakGeven
            // 
            resources.ApplyResources(this.lblLijstDocentenVakGeven, "lblLijstDocentenVakGeven");
            this.lblLijstDocentenVakGeven.CustomBackground = false;
            this.lblLijstDocentenVakGeven.CustomForeColor = false;
            this.lblLijstDocentenVakGeven.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblLijstDocentenVakGeven.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblLijstDocentenVakGeven.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLijstDocentenVakGeven.Name = "lblLijstDocentenVakGeven";
            this.lblLijstDocentenVakGeven.Style = MetroFramework.MetroColorStyle.Black;
            this.lblLijstDocentenVakGeven.StyleManager = this.metroStyleManager1;
            this.lblLijstDocentenVakGeven.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblLijstDocentenVakGeven.UseStyleColors = false;
            // 
            // lblLijstStudentenVakVolgen
            // 
            resources.ApplyResources(this.lblLijstStudentenVakVolgen, "lblLijstStudentenVakVolgen");
            this.lblLijstStudentenVakVolgen.CustomBackground = false;
            this.lblLijstStudentenVakVolgen.CustomForeColor = false;
            this.lblLijstStudentenVakVolgen.FontSize = MetroFramework.MetroLabelSize.Tall;
            this.lblLijstStudentenVakVolgen.FontWeight = MetroFramework.MetroLabelWeight.Regular;
            this.lblLijstStudentenVakVolgen.LabelMode = MetroFramework.Controls.MetroLabelMode.Default;
            this.lblLijstStudentenVakVolgen.Name = "lblLijstStudentenVakVolgen";
            this.lblLijstStudentenVakVolgen.Style = MetroFramework.MetroColorStyle.Black;
            this.lblLijstStudentenVakVolgen.StyleManager = this.metroStyleManager1;
            this.lblLijstStudentenVakVolgen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.lblLijstStudentenVakVolgen.UseStyleColors = false;
            // 
            // tbctrlBeheerder
            // 
            this.tbctrlBeheerder.Controls.Add(this.tabBeheerder);
            this.tbctrlBeheerder.Controls.Add(this.tabVak);
            this.tbctrlBeheerder.CustomBackground = false;
            this.tbctrlBeheerder.FontSize = MetroFramework.MetroTabControlSize.Medium;
            this.tbctrlBeheerder.FontWeight = MetroFramework.MetroTabControlWeight.Light;
            resources.ApplyResources(this.tbctrlBeheerder, "tbctrlBeheerder");
            this.tbctrlBeheerder.Name = "tbctrlBeheerder";
            this.tbctrlBeheerder.SelectedIndex = 1;
            this.tbctrlBeheerder.Style = MetroFramework.MetroColorStyle.Black;
            this.tbctrlBeheerder.StyleManager = this.metroStyleManager1;
            this.tbctrlBeheerder.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.tbctrlBeheerder.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tbctrlBeheerder.UseStyleColors = false;
            // 
            // tabBeheerder
            // 
            this.tabBeheerder.BackColor = System.Drawing.SystemColors.Control;
            this.tabBeheerder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tabBeheerder.Controls.Add(this.lstRollen);
            this.tabBeheerder.Controls.Add(cmdGebruikerInschrijven);
            this.tabBeheerder.Controls.Add(this.radAlleGebruikers);
            this.tabBeheerder.Controls.Add(cmdGebruikersToevoegenUitCSV);
            this.tabBeheerder.Controls.Add(this.dgrvGebruikers);
            this.tabBeheerder.Controls.Add(this.radStudenten);
            this.tabBeheerder.Controls.Add(this.radDocenten);
            this.tabBeheerder.Controls.Add(this.radBeheerders);
            this.tabBeheerder.Controls.Add(cmdGebruikerAanpassen);
            this.tabBeheerder.Controls.Add(this.cmdGebruikerVerwijderen);
            this.tabBeheerder.Controls.Add(cmdGebruikerToevoegen);
            this.tabBeheerder.Controls.Add(this.lblLijstRollen);
            this.tabBeheerder.Controls.Add(this.lblLijstGebruikers);
            this.tabBeheerder.Controls.Add(this.lblTussenTitelChk);
            this.tabBeheerder.CustomBackground = false;
            this.tabBeheerder.ForeColor = System.Drawing.Color.Black;
            this.tabBeheerder.HorizontalScrollbar = false;
            this.tabBeheerder.HorizontalScrollbarBarColor = true;
            this.tabBeheerder.HorizontalScrollbarHighlightOnWheel = false;
            this.tabBeheerder.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.tabBeheerder, "tabBeheerder");
            this.tabBeheerder.Name = "tabBeheerder";
            this.tabBeheerder.Style = MetroFramework.MetroColorStyle.Black;
            this.tabBeheerder.StyleManager = this.metroStyleManager1;
            this.tabBeheerder.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabBeheerder.VerticalScrollbar = false;
            this.tabBeheerder.VerticalScrollbarBarColor = true;
            this.tabBeheerder.VerticalScrollbarHighlightOnWheel = false;
            this.tabBeheerder.VerticalScrollbarSize = 11;
            // 
            // lstRollen
            // 
            this.lstRollen.FormattingEnabled = true;
            resources.ApplyResources(this.lstRollen, "lstRollen");
            this.lstRollen.Name = "lstRollen";
            // 
            // radAlleGebruikers
            // 
            resources.ApplyResources(this.radAlleGebruikers, "radAlleGebruikers");
            this.radAlleGebruikers.CustomBackground = false;
            this.radAlleGebruikers.CustomForeColor = false;
            this.radAlleGebruikers.FontSize = MetroFramework.MetroLinkSize.Small;
            this.radAlleGebruikers.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.radAlleGebruikers.Name = "radAlleGebruikers";
            this.radAlleGebruikers.Style = MetroFramework.MetroColorStyle.Blue;
            this.radAlleGebruikers.StyleManager = null;
            this.radAlleGebruikers.Theme = MetroFramework.MetroThemeStyle.Light;
            this.radAlleGebruikers.UseStyleColors = false;
            this.radAlleGebruikers.UseVisualStyleBackColor = true;
            this.radAlleGebruikers.CheckedChanged += new System.EventHandler(this.radAlleGebruikers_CheckedChanged);
            // 
            // dgrvGebruikers
            // 
            this.dgrvGebruikers.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
            this.dgrvGebruikers.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
            this.dgrvGebruikers.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            resources.ApplyResources(this.dgrvGebruikers, "dgrvGebruikers");
            this.dgrvGebruikers.Name = "dgrvGebruikers";
            this.dgrvGebruikers.ReadOnly = true;
            this.dgrvGebruikers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgrvGebruikers.SelectionChanged += new System.EventHandler(this.dgrvGebruikers_SelectionChanged);
            // 
            // radStudenten
            // 
            resources.ApplyResources(this.radStudenten, "radStudenten");
            this.radStudenten.CustomBackground = false;
            this.radStudenten.CustomForeColor = false;
            this.radStudenten.FontSize = MetroFramework.MetroLinkSize.Small;
            this.radStudenten.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.radStudenten.Name = "radStudenten";
            this.radStudenten.Style = MetroFramework.MetroColorStyle.Blue;
            this.radStudenten.StyleManager = null;
            this.radStudenten.Theme = MetroFramework.MetroThemeStyle.Light;
            this.radStudenten.UseStyleColors = false;
            this.radStudenten.UseVisualStyleBackColor = true;
            this.radStudenten.CheckedChanged += new System.EventHandler(this.radStudenten_CheckedChanged);
            // 
            // radDocenten
            // 
            resources.ApplyResources(this.radDocenten, "radDocenten");
            this.radDocenten.CustomBackground = false;
            this.radDocenten.CustomForeColor = false;
            this.radDocenten.FontSize = MetroFramework.MetroLinkSize.Small;
            this.radDocenten.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.radDocenten.Name = "radDocenten";
            this.radDocenten.Style = MetroFramework.MetroColorStyle.Blue;
            this.radDocenten.StyleManager = null;
            this.radDocenten.Theme = MetroFramework.MetroThemeStyle.Light;
            this.radDocenten.UseStyleColors = false;
            this.radDocenten.UseVisualStyleBackColor = true;
            this.radDocenten.CheckedChanged += new System.EventHandler(this.radDocenten_CheckedChanged);
            // 
            // radBeheerders
            // 
            resources.ApplyResources(this.radBeheerders, "radBeheerders");
            this.radBeheerders.CustomBackground = false;
            this.radBeheerders.CustomForeColor = false;
            this.radBeheerders.FontSize = MetroFramework.MetroLinkSize.Small;
            this.radBeheerders.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.radBeheerders.Name = "radBeheerders";
            this.radBeheerders.Style = MetroFramework.MetroColorStyle.Blue;
            this.radBeheerders.StyleManager = null;
            this.radBeheerders.Theme = MetroFramework.MetroThemeStyle.Light;
            this.radBeheerders.UseStyleColors = false;
            this.radBeheerders.UseVisualStyleBackColor = true;
            this.radBeheerders.CheckedChanged += new System.EventHandler(this.radBeheerders_CheckedChanged);
            // 
            // cmdGebruikerVerwijderen
            // 
            this.cmdGebruikerVerwijderen.Highlight = true;
            resources.ApplyResources(this.cmdGebruikerVerwijderen, "cmdGebruikerVerwijderen");
            this.cmdGebruikerVerwijderen.Name = "cmdGebruikerVerwijderen";
            this.cmdGebruikerVerwijderen.Style = MetroFramework.MetroColorStyle.Black;
            this.cmdGebruikerVerwijderen.StyleManager = this.metroStyleManager1;
            this.cmdGebruikerVerwijderen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.cmdGebruikerVerwijderen.Click += new System.EventHandler(this.cmdGebruikerVerwijderen_Click);
            // 
            // tabVak
            // 
            this.tabVak.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tabVak.Controls.Add(this.cmdVakAanpassen);
            this.tabVak.Controls.Add(this.dgrvStudentenBijVak);
            this.tabVak.Controls.Add(this.dgrvDocentenBijVakken);
            this.tabVak.Controls.Add(cmdVakVerwijderen);
            this.tabVak.Controls.Add(cmdVakToevoegen);
            this.tabVak.Controls.Add(this.lblLijstStudentenVakVolgen);
            this.tabVak.Controls.Add(this.lblLijstDocentenVakGeven);
            this.tabVak.Controls.Add(this.lstDocentenVakGeven);
            this.tabVak.Controls.Add(this.lblLijstVakken);
            this.tabVak.Controls.Add(this.lstVakken);
            this.tabVak.Controls.Add(this.lstStudentenVakVolgen);
            this.tabVak.CustomBackground = false;
            this.tabVak.HorizontalScrollbar = false;
            this.tabVak.HorizontalScrollbarBarColor = true;
            this.tabVak.HorizontalScrollbarHighlightOnWheel = false;
            this.tabVak.HorizontalScrollbarSize = 10;
            resources.ApplyResources(this.tabVak, "tabVak");
            this.tabVak.Name = "tabVak";
            this.tabVak.Style = MetroFramework.MetroColorStyle.Black;
            this.tabVak.StyleManager = this.metroStyleManager1;
            this.tabVak.Theme = MetroFramework.MetroThemeStyle.Light;
            this.tabVak.VerticalScrollbar = false;
            this.tabVak.VerticalScrollbarBarColor = false;
            this.tabVak.VerticalScrollbarHighlightOnWheel = false;
            this.tabVak.VerticalScrollbarSize = 11;
            // 
            // cmdVakAanpassen
            // 
            this.cmdVakAanpassen.Highlight = true;
            resources.ApplyResources(this.cmdVakAanpassen, "cmdVakAanpassen");
            this.cmdVakAanpassen.Name = "cmdVakAanpassen";
            this.cmdVakAanpassen.Style = MetroFramework.MetroColorStyle.Black;
            this.cmdVakAanpassen.StyleManager = null;
            this.cmdVakAanpassen.Theme = MetroFramework.MetroThemeStyle.Light;
            this.cmdVakAanpassen.Click += new System.EventHandler(this.cmdVakAanpassen_Click);
            // 
            // dgrvStudentenBijVak
            // 
            this.dgrvStudentenBijVak.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
            this.dgrvStudentenBijVak.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
            this.dgrvStudentenBijVak.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            resources.ApplyResources(this.dgrvStudentenBijVak, "dgrvStudentenBijVak");
            this.dgrvStudentenBijVak.Name = "dgrvStudentenBijVak";
            this.dgrvStudentenBijVak.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            // 
            // dgrvDocentenBijVakken
            // 
            this.dgrvDocentenBijVakken.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
            this.dgrvDocentenBijVakken.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
            this.dgrvDocentenBijVakken.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            resources.ApplyResources(this.dgrvDocentenBijVakken, "dgrvDocentenBijVakken");
            this.dgrvDocentenBijVakken.Name = "dgrvDocentenBijVakken";
            this.dgrvDocentenBijVakken.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            // 
            // languageControl1
            // 
            resources.ApplyResources(this.languageControl1, "languageControl1");
            this.languageControl1.Name = "languageControl1";
            // 
            // FrmBeheerder
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.languageControl1);
            this.Controls.Add(this.tbctrlBeheerder);
            this.MaximizeBox = false;
            this.Name = "FrmBeheerder";
            this.Resizable = false;
            this.Style = MetroFramework.MetroColorStyle.Black;
            this.StyleManager = this.metroStyleManager1;
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmBeheerder_FormClosed);
            this.Enter += new System.EventHandler(this.frmBeheerder_Enter);
            this.tbctrlBeheerder.ResumeLayout(false);
            this.tabBeheerder.ResumeLayout(false);
            this.tabBeheerder.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvGebruikers)).EndInit();
            this.tabVak.ResumeLayout(false);
            this.tabVak.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvStudentenBijVak)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgrvDocentenBijVakken)).EndInit();
            this.ResumeLayout(false);

        }