Example #1
0
        private BunifuCheckbox addCheckOption(bool isCorrect)
        {
            BunifuCheckbox checkOp = new BunifuCheckbox();

            checkOp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            if (isCorrect)
            {
                checkOp.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
            }
            else
            {
                checkOp.CheckedOnColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
            }
            checkOp.Checked        = true;
            checkOp.CheckedOnColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            checkOp.ForeColor      = System.Drawing.Color.White;
            int locationX = isCorrect == true ? 0 : 40;

            checkOp.Location = new System.Drawing.Point(432 + locationX, 32);
            checkOp.Size     = new System.Drawing.Size(20, 20);
            checkOp.Enabled  = false;

            if (isCorrect)
            {
                checkCorrects.Add(checkOp);
            }
            else
            {
                checkOptions.Add(checkOp);
            }

            return(checkOp);
        }
Example #2
0
        public BunifuCheckbox CreateBoolInput(ref int t)
        {
            BunifuCheckbox i = new BunifuCheckbox
            {
                Location        = new Point(17, t),
                ChechedOffColor = Color.FromArgb(132, 135, 140),
                CheckedOnColor  = Color.FromArgb(33, 150, 243),
                Checked         = true
            };

            t += i.Height + 10;
            Controls.Add(i);
            return(i);
        }
Example #3
0
        public void addCorrect(Panel panel)
        {
            BunifuCheckbox CheckCorrect = new BunifuCheckbox();

            CheckCorrect.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            CheckCorrect.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
            CheckCorrect.Checked         = false;
            CheckCorrect.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            CheckCorrect.ForeColor       = System.Drawing.Color.White;
            CheckCorrect.Location        = new System.Drawing.Point(0, 46);
            CheckCorrect.Size            = new System.Drawing.Size(20, 20);
            checkBoxOptions.Add(CheckCorrect);
            panel.Controls.Add(CheckCorrect);
        }
Example #4
0
        private BunifuCheckbox addCheckQs(bool isTrue)
        {
            BunifuCheckbox Check = new BunifuCheckbox();

            Check.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            Check.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
            Check.Checked         = isTrue;
            Check.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            Check.ForeColor       = System.Drawing.Color.White;
            Check.Location        = new System.Drawing.Point(432, 56);
            Check.Size            = new System.Drawing.Size(20, 20);
            Check.Enabled         = false;

            return(Check);
        }
        private BunifuCheckbox addCheckBoxIntopanel()
        {
            BunifuCheckbox checkOption = new BunifuCheckbox();

            checkOption.BackColor       = System.Drawing.Color.IndianRed;
            checkOption.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
            checkOption.Checked         = true;
            checkOption.CheckedOnColor  = System.Drawing.Color.IndianRed;
            checkOption.ForeColor       = System.Drawing.Color.White;
            checkOption.Location        = new System.Drawing.Point(3, 54);
            checkOption.Size            = new System.Drawing.Size(20, 20);

            checkboxes.Add(checkOption);

            return(checkOption);
        }
Example #6
0
        private BunifuCheckbox addCkCorrect()
        {
            BunifuCheckbox ckCorrect = new BunifuCheckbox();

            ckCorrect.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            ckCorrect.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
            ckCorrect.Checked         = false;
            ckCorrect.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
            animation.SetDecoration(ckCorrect, BunifuAnimatorNS.DecorationType.None);
            ckCorrect.ForeColor = System.Drawing.Color.White;
            ckCorrect.Location  = new System.Drawing.Point(16, 45);
            ckCorrect.Size      = new System.Drawing.Size(20, 20);

            ckCorrects.Add(ckCorrect);
            return(ckCorrect);
        }
Example #7
0
        private void checkTable(ref BunifuCustomDataGrid dataGrid, ref BunifuCheckbox bunifuCheckbox)
        {
            int rowCount = dataGrid.RowCount;

            if (rowCount > 1)
            {
                for (int i = 1; i < rowCount; i++)
                {
                    if (Convert.ToBoolean(dataGrid1.Rows[i - 1].Cells["Imprimir"].Value) != Convert.ToBoolean(dataGrid1.Rows[i].Cells["Imprimir"].Value))
                    {
                        bunifuCheckbox.Checked = false;
                        return;
                    }
                }
                // bunifuCheckbox.Checked = true;//Convert.ToBoolean(dataGrid1.Rows[0].Cells["Imprimir"].Value);
            }
        }
Example #8
0
        private void Add_check_modulos()
        {
            BunifuCheckbox    check;
            BunifuCustomLabel label;
            var index = 0;

            foreach (string item in Enum.GetNames(typeof(GlobalS.Modulos)))
            {
                index++;
                check                = new BunifuCheckbox();
                check.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(26)))), ((int)(((byte)(74)))));
                check.CheckedOnColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(26)))), ((int)(((byte)(74)))));
                check.Size           = new Size(20, 20);
                check.Name           = "ck" + index;
                label                = new BunifuCustomLabel();
                label.Size           = new Size(160, 20);

                label.Text = item;
                label.Font = new System.Drawing.Font("Century Gothic", 12, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));

                this.panelmodulos.Controls.AddRange(new Control[] { check, label });
            }
        }
Example #9
0
 public static bool PermisosModulos(Control panel, int id_usuario)
 {
     try
     {
         foreach (var item in panel.Controls)
         {
             if (item is BunifuCheckbox)
             {
                 BunifuCheckbox check = item as BunifuCheckbox;
                 if (check.Checked == true)
                 {
                     CRUD.Insert_Data(new AccesoModulos {
                         Id = Get_Max_Id(), Id_modulo = int.Parse(check.Name.Substring(2)), Id_usuario = id_usuario
                     }, GlobalS.URL_JSON + "Administracion/AccesoModulos.json");
                 }
             }
         }
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Example #10
0
 public void InitializeComponent()
 {
     bunifuCustomLabel7   = new BunifuCustomLabel();
     bunifuCheckbox5      = new BunifuCheckbox();
     bunifuCustomLabel6   = new BunifuCustomLabel();
     bunifuCustomTextbox1 = new BunifuCustomTextbox();
     bunifuCustomTextbox2 = new BunifuCustomTextbox();
     bunifuCustomTextbox3 = new BunifuCustomTextbox();
     bunifuCustomLabel1   = new BunifuCustomLabel();
     bunifuCustomLabel2   = new BunifuCustomLabel();
     bunifuCheckbox1      = new BunifuCheckbox();
     bunifuCustomLabel3   = new BunifuCustomLabel();
     bunifuCheckbox2      = new BunifuCheckbox();
     bunifuCustomLabel4   = new BunifuCustomLabel();
     bunifuCheckbox3      = new BunifuCheckbox();
     bunifuCustomTextbox4 = new BunifuCustomTextbox();
     bunifuCustomLabel5   = new BunifuCustomLabel();
     bunifuCheckbox4      = new BunifuCheckbox();
     bunifuCustomLabel12  = new BunifuCustomLabel();
     bunifuCheckbox9      = new BunifuCheckbox();
     thirteenComboBox3    = new ThirteenComboBox();
     chromeRadioButton4   = new ChromeRadioButton();
     chromeRadioButton3   = new ChromeRadioButton();
     thirteenComboBox2    = new ThirteenComboBox();
     thirteenComboBox1    = new ThirteenComboBox();
     bunifuCustomLabel8   = new BunifuCustomLabel();
     bunifuCustomLabel9   = new BunifuCustomLabel();
     bunifuCustomLabel10  = new BunifuCustomLabel();
     bunifuCustomLabel11  = new BunifuCustomLabel();
     base.SuspendLayout();
     bunifuCustomLabel7.AutoSize         = true;
     bunifuCustomLabel7.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel7.Location         = new Point(57, 45);
     bunifuCustomLabel7.Name             = "bunifuCustomLabel7";
     bunifuCustomLabel7.Size             = new Size(104, 16);
     bunifuCustomLabel7.TabIndex         = 37;
     bunifuCustomLabel7.Text             = "Add To Startup :";
     bunifuCheckbox5.BackColor           = Color.SeaGreen;
     bunifuCheckbox5.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox5.Checked             = false;
     bunifuCheckbox5.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox5.ForeColor           = Color.White;
     bunifuCheckbox5.Location            = new Point(31, 43);
     bunifuCheckbox5.Name                = "bunifuCheckbox5";
     bunifuCheckbox5.Size                = new Size(20, 20);
     bunifuCheckbox5.TabIndex            = 36;
     bunifuCheckbox5.OnChange           += bunifuCheckbox5_OnChange;
     bunifuCustomLabel6.AutoSize         = true;
     bunifuCustomLabel6.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel6.Location         = new Point(8, 9);
     bunifuCustomLabel6.Name             = "bunifuCustomLabel6";
     bunifuCustomLabel6.Size             = new Size(48, 16);
     bunifuCustomLabel6.TabIndex         = 35;
     bunifuCustomLabel6.Text             = "Install :";
     bunifuCustomTextbox1.BorderColor    = Color.SeaGreen;
     bunifuCustomTextbox1.BorderStyle    = BorderStyle.FixedSingle;
     bunifuCustomTextbox1.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox1.Location       = new Point(161, 177);
     bunifuCustomTextbox1.Multiline      = true;
     bunifuCustomTextbox1.Name           = "bunifuCustomTextbox1";
     bunifuCustomTextbox1.Size           = new Size(137, 23);
     bunifuCustomTextbox1.TabIndex       = 38;
     bunifuCustomTextbox1.Text           = "Registry Name";
     bunifuCustomTextbox1.TextAlign      = HorizontalAlignment.Center;
     bunifuCustomTextbox2.BorderColor    = Color.SeaGreen;
     bunifuCustomTextbox2.BorderStyle    = BorderStyle.FixedSingle;
     bunifuCustomTextbox2.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox2.Location       = new Point(161, 222);
     bunifuCustomTextbox2.Multiline      = true;
     bunifuCustomTextbox2.Name           = "bunifuCustomTextbox2";
     bunifuCustomTextbox2.Size           = new Size(137, 23);
     bunifuCustomTextbox2.TabIndex       = 39;
     bunifuCustomTextbox2.Text           = "Folder Name";
     bunifuCustomTextbox2.TextAlign      = HorizontalAlignment.Center;
     bunifuCustomTextbox3.BorderColor    = Color.SeaGreen;
     bunifuCustomTextbox3.BorderStyle    = BorderStyle.FixedSingle;
     bunifuCustomTextbox3.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox3.Location       = new Point(161, 262);
     bunifuCustomTextbox3.Multiline      = true;
     bunifuCustomTextbox3.Name           = "bunifuCustomTextbox3";
     bunifuCustomTextbox3.Size           = new Size(137, 23);
     bunifuCustomTextbox3.TabIndex       = 40;
     bunifuCustomTextbox3.Text           = "File Name";
     bunifuCustomTextbox3.TextAlign      = HorizontalAlignment.Center;
     bunifuCustomLabel1.AutoSize         = true;
     bunifuCustomLabel1.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel1.Location         = new Point(48, 317);
     bunifuCustomLabel1.Name             = "bunifuCustomLabel1";
     bunifuCustomLabel1.Size             = new Size(109, 16);
     bunifuCustomLabel1.TabIndex         = 45;
     bunifuCustomLabel1.Text             = "Install Extension :";
     bunifuCustomLabel2.AutoSize         = true;
     bunifuCustomLabel2.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel2.Location         = new Point(393, 45);
     bunifuCustomLabel2.Name             = "bunifuCustomLabel2";
     bunifuCustomLabel2.Size             = new Size(121, 16);
     bunifuCustomLabel2.TabIndex         = 47;
     bunifuCustomLabel2.Text             = "Hide Parent Folder";
     bunifuCheckbox1.BackColor           = Color.SeaGreen;
     bunifuCheckbox1.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox1.Checked             = false;
     bunifuCheckbox1.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox1.Enabled             = false;
     bunifuCheckbox1.ForeColor           = Color.White;
     bunifuCheckbox1.Location            = new Point(367, 43);
     bunifuCheckbox1.Name                = "bunifuCheckbox1";
     bunifuCheckbox1.Size                = new Size(20, 20);
     bunifuCheckbox1.TabIndex            = 46;
     bunifuCustomLabel3.AutoSize         = true;
     bunifuCustomLabel3.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel3.Location         = new Point(393, 91);
     bunifuCustomLabel3.Name             = "bunifuCustomLabel3";
     bunifuCustomLabel3.Size             = new Size(62, 16);
     bunifuCustomLabel3.TabIndex         = 49;
     bunifuCustomLabel3.Text             = "Hide File";
     bunifuCheckbox2.BackColor           = Color.SeaGreen;
     bunifuCheckbox2.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox2.Checked             = false;
     bunifuCheckbox2.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox2.Enabled             = false;
     bunifuCheckbox2.ForeColor           = Color.White;
     bunifuCheckbox2.Location            = new Point(367, 89);
     bunifuCheckbox2.Name                = "bunifuCheckbox2";
     bunifuCheckbox2.Size                = new Size(20, 20);
     bunifuCheckbox2.TabIndex            = 48;
     bunifuCustomLabel4.AutoSize         = true;
     bunifuCustomLabel4.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel4.Location         = new Point(393, 279);
     bunifuCustomLabel4.Name             = "bunifuCustomLabel4";
     bunifuCustomLabel4.Size             = new Size(151, 16);
     bunifuCustomLabel4.TabIndex         = 51;
     bunifuCustomLabel4.Text             = "Enable Startup Backup :";
     bunifuCheckbox3.BackColor           = Color.SeaGreen;
     bunifuCheckbox3.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox3.Checked             = false;
     bunifuCheckbox3.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox3.ForeColor           = Color.White;
     bunifuCheckbox3.Location            = new Point(367, 277);
     bunifuCheckbox3.Name                = "bunifuCheckbox3";
     bunifuCheckbox3.Size                = new Size(20, 20);
     bunifuCheckbox3.TabIndex            = 50;
     bunifuCustomTextbox4.BorderColor    = Color.SeaGreen;
     bunifuCustomTextbox4.BorderStyle    = BorderStyle.FixedSingle;
     bunifuCustomTextbox4.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox4.Location       = new Point(532, 317);
     bunifuCustomTextbox4.Multiline      = true;
     bunifuCustomTextbox4.Name           = "bunifuCustomTextbox4";
     bunifuCustomTextbox4.Size           = new Size(144, 23);
     bunifuCustomTextbox4.TabIndex       = 52;
     bunifuCustomTextbox4.Text           = "File Name";
     bunifuCustomTextbox4.TextAlign      = HorizontalAlignment.Center;
     bunifuCustomLabel5.AutoSize         = true;
     bunifuCustomLabel5.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel5.Location         = new Point(393, 135);
     bunifuCustomLabel5.Name             = "bunifuCustomLabel5";
     bunifuCustomLabel5.Size             = new Size(133, 16);
     bunifuCustomLabel5.TabIndex         = 56;
     bunifuCustomLabel5.Text             = "Exit At First Execution";
     bunifuCheckbox4.BackColor           = Color.SeaGreen;
     bunifuCheckbox4.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox4.Checked             = false;
     bunifuCheckbox4.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox4.Enabled             = false;
     bunifuCheckbox4.ForeColor           = Color.White;
     bunifuCheckbox4.Location            = new Point(367, 133);
     bunifuCheckbox4.Name                = "bunifuCheckbox4";
     bunifuCheckbox4.Size                = new Size(20, 20);
     bunifuCheckbox4.TabIndex            = 55;
     bunifuCustomLabel12.AutoSize        = true;
     bunifuCustomLabel12.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel12.Location        = new Point(559, 45);
     bunifuCustomLabel12.Name            = "bunifuCustomLabel12";
     bunifuCustomLabel12.Size            = new Size(110, 16);
     bunifuCustomLabel12.TabIndex        = 70;
     bunifuCustomLabel12.Text            = "Remove Zone ID";
     bunifuCheckbox9.BackColor           = Color.SeaGreen;
     bunifuCheckbox9.ChechedOffColor     = Color.SeaGreen;
     bunifuCheckbox9.Checked             = false;
     bunifuCheckbox9.CheckedOnColor      = Color.SeaGreen;
     bunifuCheckbox9.Enabled             = false;
     bunifuCheckbox9.ForeColor           = Color.White;
     bunifuCheckbox9.Location            = new Point(536, 43);
     bunifuCheckbox9.Name                = "bunifuCheckbox9";
     bunifuCheckbox9.Size                = new Size(20, 20);
     bunifuCheckbox9.TabIndex            = 69;
     thirteenComboBox3.AccentColor       = Color.White;
     thirteenComboBox3.BackColor         = Color.FromArgb(255, 255, 255);
     thirteenComboBox3.ColorScheme       = ThirteenComboBox.ColorSchemes.Dark;
     thirteenComboBox3.DrawMode          = DrawMode.OwnerDrawFixed;
     thirteenComboBox3.DropDownStyle     = ComboBoxStyle.DropDownList;
     thirteenComboBox3.Font              = new Font("Microsoft Sans Serif", 9.75f);
     thirteenComboBox3.ForeColor         = Color.Black;
     thirteenComboBox3.FormattingEnabled = true;
     thirteenComboBox3.Items.AddRange(new object[3]
     {
         "AppData",
         "ProgramData",
         "Temp"
     });
     thirteenComboBox3.Location          = new Point(382, 317);
     thirteenComboBox3.Name              = "thirteenComboBox3";
     thirteenComboBox3.Size              = new Size(144, 23);
     thirteenComboBox3.TabIndex          = 57;
     chromeRadioButton4.Checked          = false;
     chromeRadioButton4.Customization    = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton4.Field            = 23;
     chromeRadioButton4.Font             = new Font("Microsoft Sans Serif", 9.75f);
     chromeRadioButton4.Image            = null;
     chromeRadioButton4.Location         = new Point(169, 89);
     chromeRadioButton4.Name             = "chromeRadioButton4";
     chromeRadioButton4.NoRounding       = false;
     chromeRadioButton4.Size             = new Size(128, 23);
     chromeRadioButton4.TabIndex         = 54;
     chromeRadioButton4.Text             = "File Shortcut";
     chromeRadioButton4.Transparent      = false;
     chromeRadioButton3.Checked          = false;
     chromeRadioButton3.Customization    = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton3.Field            = 23;
     chromeRadioButton3.Font             = new Font("Microsoft Sans Serif", 9.75f);
     chromeRadioButton3.Image            = null;
     chromeRadioButton3.Location         = new Point(51, 89);
     chromeRadioButton3.Name             = "chromeRadioButton3";
     chromeRadioButton3.NoRounding       = false;
     chromeRadioButton3.Size             = new Size(112, 23);
     chromeRadioButton3.TabIndex         = 53;
     chromeRadioButton3.Text             = "Registry Key";
     chromeRadioButton3.Transparent      = false;
     thirteenComboBox2.AccentColor       = Color.White;
     thirteenComboBox2.BackColor         = Color.FromArgb(255, 255, 255);
     thirteenComboBox2.ColorScheme       = ThirteenComboBox.ColorSchemes.Dark;
     thirteenComboBox2.DrawMode          = DrawMode.OwnerDrawFixed;
     thirteenComboBox2.DropDownStyle     = ComboBoxStyle.DropDownList;
     thirteenComboBox2.Font              = new Font("Microsoft Sans Serif", 9.75f);
     thirteenComboBox2.ForeColor         = Color.Black;
     thirteenComboBox2.FormattingEnabled = true;
     thirteenComboBox2.Items.AddRange(new object[3]
     {
         ".exe",
         ".scr",
         ".com"
     });
     thirteenComboBox2.Location          = new Point(161, 314);
     thirteenComboBox2.Name              = "thirteenComboBox2";
     thirteenComboBox2.Size              = new Size(56, 23);
     thirteenComboBox2.TabIndex          = 44;
     thirteenComboBox1.AccentColor       = Color.White;
     thirteenComboBox1.BackColor         = Color.FromArgb(255, 255, 255);
     thirteenComboBox1.ColorScheme       = ThirteenComboBox.ColorSchemes.Dark;
     thirteenComboBox1.DrawMode          = DrawMode.OwnerDrawFixed;
     thirteenComboBox1.DropDownStyle     = ComboBoxStyle.DropDownList;
     thirteenComboBox1.Font              = new Font("Microsoft Sans Serif", 9.75f);
     thirteenComboBox1.ForeColor         = Color.Black;
     thirteenComboBox1.FormattingEnabled = true;
     thirteenComboBox1.Items.AddRange(new object[3]
     {
         "AppData",
         "ProgramData",
         "Temp"
     });
     thirteenComboBox1.Location   = new Point(161, 136);
     thirteenComboBox1.Name       = "thirteenComboBox1";
     thirteenComboBox1.Size       = new Size(137, 23);
     thirteenComboBox1.TabIndex   = 41;
     bunifuCustomLabel8.AutoSize  = true;
     bunifuCustomLabel8.Font      = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel8.Location  = new Point(49, 264);
     bunifuCustomLabel8.Name      = "bunifuCustomLabel8";
     bunifuCustomLabel8.Size      = new Size(70, 16);
     bunifuCustomLabel8.TabIndex  = 71;
     bunifuCustomLabel8.Text      = "Filename :";
     bunifuCustomLabel9.AutoSize  = true;
     bunifuCustomLabel9.Font      = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel9.Location  = new Point(49, 225);
     bunifuCustomLabel9.Name      = "bunifuCustomLabel9";
     bunifuCustomLabel9.Size      = new Size(87, 16);
     bunifuCustomLabel9.TabIndex  = 72;
     bunifuCustomLabel9.Text      = "Foldername :";
     bunifuCustomLabel10.AutoSize = true;
     bunifuCustomLabel10.Font     = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel10.Location = new Point(49, 180);
     bunifuCustomLabel10.Name     = "bunifuCustomLabel10";
     bunifuCustomLabel10.Size     = new Size(98, 16);
     bunifuCustomLabel10.TabIndex = 73;
     bunifuCustomLabel10.Text     = "Registryname :";
     bunifuCustomLabel11.AutoSize = true;
     bunifuCustomLabel11.Font     = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel11.Location = new Point(49, 139);
     bunifuCustomLabel11.Name     = "bunifuCustomLabel11";
     bunifuCustomLabel11.Size     = new Size(68, 16);
     bunifuCustomLabel11.TabIndex = 74;
     bunifuCustomLabel11.Text     = "Directory :";
     base.AutoScaleDimensions     = new SizeF(6f, 13f);
     base.AutoScaleMode           = AutoScaleMode.Font;
     BackColor       = Color.White;
     base.ClientSize = new Size(710, 370);
     base.Controls.Add(bunifuCustomLabel11);
     base.Controls.Add(bunifuCustomLabel10);
     base.Controls.Add(bunifuCustomLabel9);
     base.Controls.Add(bunifuCustomLabel8);
     base.Controls.Add(bunifuCustomLabel12);
     base.Controls.Add(bunifuCheckbox9);
     base.Controls.Add(thirteenComboBox3);
     base.Controls.Add(bunifuCustomLabel5);
     base.Controls.Add(bunifuCheckbox4);
     base.Controls.Add(chromeRadioButton4);
     base.Controls.Add(chromeRadioButton3);
     base.Controls.Add(bunifuCustomTextbox4);
     base.Controls.Add(bunifuCustomLabel4);
     base.Controls.Add(bunifuCheckbox3);
     base.Controls.Add(bunifuCustomLabel3);
     base.Controls.Add(bunifuCheckbox2);
     base.Controls.Add(bunifuCustomLabel2);
     base.Controls.Add(bunifuCheckbox1);
     base.Controls.Add(bunifuCustomLabel1);
     base.Controls.Add(thirteenComboBox2);
     base.Controls.Add(thirteenComboBox1);
     base.Controls.Add(bunifuCustomTextbox3);
     base.Controls.Add(bunifuCustomTextbox2);
     base.Controls.Add(bunifuCustomTextbox1);
     base.Controls.Add(bunifuCustomLabel7);
     base.Controls.Add(bunifuCheckbox5);
     base.Controls.Add(bunifuCustomLabel6);
     base.FormBorderStyle = FormBorderStyle.None;
     base.Name            = "FileFrm";
     Text       = "FileFrm";
     base.Load += FileFrm_Load;
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Example #11
0
 public void InitializeComponent()
 {
     groupBox1            = new GroupBox();
     chromeRadioButton8   = new ChromeRadioButton();
     chromeRadioButton7   = new ChromeRadioButton();
     chromeRadioButton6   = new ChromeRadioButton();
     chromeRadioButton5   = new ChromeRadioButton();
     chromeRadioButton4   = new ChromeRadioButton();
     bunifuCheckbox1      = new BunifuCheckbox();
     bunifuCustomLabel5   = new BunifuCustomLabel();
     bunifuCustomLabel1   = new BunifuCustomLabel();
     bunifuCustomLabel2   = new BunifuCustomLabel();
     bunifuCheckbox2      = new BunifuCheckbox();
     bunifuCustomTextbox1 = new BunifuCustomTextbox();
     bunifuCustomLabel3   = new BunifuCustomLabel();
     bunifuCheckbox3      = new BunifuCheckbox();
     bunifuCustomTextbox2 = new BunifuCustomTextbox();
     bunifuCustomLabel4   = new BunifuCustomLabel();
     bunifuCheckbox4      = new BunifuCheckbox();
     bunifuCustomLabel6   = new BunifuCustomLabel();
     bunifuCustomLabel7   = new BunifuCustomLabel();
     bunifuCheckbox5      = new BunifuCheckbox();
     bunifuCustomLabel8   = new BunifuCustomLabel();
     bunifuCheckbox6      = new BunifuCheckbox();
     bunifuCustomLabel9   = new BunifuCustomLabel();
     bunifuCheckbox7      = new BunifuCheckbox();
     bunifuCustomLabel10  = new BunifuCustomLabel();
     bunifuCustomLabel11  = new BunifuCustomLabel();
     groupBox2            = new GroupBox();
     chromeRadioButton13  = new ChromeRadioButton();
     chromeRadioButton12  = new ChromeRadioButton();
     chromeRadioButton11  = new ChromeRadioButton();
     chromeRadioButton10  = new ChromeRadioButton();
     chromeRadioButton9   = new ChromeRadioButton();
     groupBox1.SuspendLayout();
     groupBox2.SuspendLayout();
     base.SuspendLayout();
     groupBox1.Controls.Add(chromeRadioButton8);
     groupBox1.Controls.Add(chromeRadioButton7);
     groupBox1.Controls.Add(chromeRadioButton6);
     groupBox1.Controls.Add(chromeRadioButton5);
     groupBox1.Controls.Add(chromeRadioButton4);
     groupBox1.Location                 = new Point(129, 10);
     groupBox1.Name                     = "groupBox1";
     groupBox1.Size                     = new Size(127, 156);
     groupBox1.TabIndex                 = 3;
     groupBox1.TabStop                  = false;
     chromeRadioButton8.Checked         = false;
     chromeRadioButton8.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton8.Field           = 23;
     chromeRadioButton8.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton8.Image           = null;
     chromeRadioButton8.Location        = new Point(17, 70);
     chromeRadioButton8.Name            = "chromeRadioButton8";
     chromeRadioButton8.NoRounding      = false;
     chromeRadioButton8.Size            = new Size(81, 23);
     chromeRadioButton8.TabIndex        = 4;
     chromeRadioButton8.Text            = "Dllhost";
     chromeRadioButton8.Transparent     = false;
     chromeRadioButton8.Visible         = false;
     chromeRadioButton8.CheckedChanged += chromeRadioButton8_CheckedChanged;
     chromeRadioButton7.Checked         = false;
     chromeRadioButton7.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton7.Field           = 23;
     chromeRadioButton7.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton7.Image           = null;
     chromeRadioButton7.Location        = new Point(17, 38);
     chromeRadioButton7.Name            = "chromeRadioButton7";
     chromeRadioButton7.NoRounding      = false;
     chromeRadioButton7.Size            = new Size(81, 23);
     chromeRadioButton7.TabIndex        = 3;
     chromeRadioButton7.Text            = "Svchost";
     chromeRadioButton7.Transparent     = false;
     chromeRadioButton7.Visible         = false;
     chromeRadioButton7.CheckedChanged += chromeRadioButton7_CheckedChanged;
     chromeRadioButton6.Checked         = false;
     chromeRadioButton6.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton6.Field           = 23;
     chromeRadioButton6.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton6.Image           = null;
     chromeRadioButton6.Location        = new Point(17, 103);
     chromeRadioButton6.Name            = "chromeRadioButton6";
     chromeRadioButton6.NoRounding      = false;
     chromeRadioButton6.Size            = new Size(81, 23);
     chromeRadioButton6.TabIndex        = 2;
     chromeRadioButton6.Text            = "ItSelf";
     chromeRadioButton6.Transparent     = false;
     chromeRadioButton6.Visible         = false;
     chromeRadioButton6.CheckedChanged += chromeRadioButton6_CheckedChanged;
     chromeRadioButton5.Checked         = false;
     chromeRadioButton5.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton5.Field           = 23;
     chromeRadioButton5.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton5.Image           = null;
     chromeRadioButton5.Location        = new Point(17, 70);
     chromeRadioButton5.Name            = "chromeRadioButton5";
     chromeRadioButton5.NoRounding      = false;
     chromeRadioButton5.Size            = new Size(81, 23);
     chromeRadioButton5.TabIndex        = 1;
     chromeRadioButton5.Text            = "MSBuild";
     chromeRadioButton5.Transparent     = false;
     chromeRadioButton5.Visible         = false;
     chromeRadioButton5.CheckedChanged += chromeRadioButton5_CheckedChanged;
     chromeRadioButton4.Checked         = false;
     chromeRadioButton4.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton4.Field           = 23;
     chromeRadioButton4.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton4.Image           = null;
     chromeRadioButton4.Location        = new Point(17, 38);
     chromeRadioButton4.Name            = "chromeRadioButton4";
     chromeRadioButton4.NoRounding      = false;
     chromeRadioButton4.Size            = new Size(81, 23);
     chromeRadioButton4.TabIndex        = 0;
     chromeRadioButton4.Text            = "RegAsm";
     chromeRadioButton4.Transparent     = false;
     chromeRadioButton4.Visible         = false;
     chromeRadioButton4.CheckedChanged += chromeRadioButton4_CheckedChanged;
     bunifuCheckbox1.BackColor          = Color.SeaGreen;
     bunifuCheckbox1.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox1.Checked            = false;
     bunifuCheckbox1.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox1.ForeColor          = Color.White;
     bunifuCheckbox1.Location           = new Point(413, 52);
     bunifuCheckbox1.Name               = "bunifuCheckbox1";
     bunifuCheckbox1.Size               = new Size(20, 20);
     bunifuCheckbox1.TabIndex           = 4;
     bunifuCustomLabel5.AutoSize        = true;
     bunifuCustomLabel5.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel5.Location        = new Point(28, 14);
     bunifuCustomLabel5.Name            = "bunifuCustomLabel5";
     bunifuCustomLabel5.Size            = new Size(63, 16);
     bunifuCustomLabel5.TabIndex        = 22;
     bunifuCustomLabel5.Text            = "Injection :";
     bunifuCustomLabel1.AutoSize        = true;
     bunifuCustomLabel1.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel1.Location        = new Point(439, 53);
     bunifuCustomLabel1.Name            = "bunifuCustomLabel1";
     bunifuCustomLabel1.Size            = new Size(132, 16);
     bunifuCustomLabel1.TabIndex        = 23;
     bunifuCustomLabel1.Text            = "Process Persistence";
     bunifuCustomLabel2.AutoSize        = true;
     bunifuCustomLabel2.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel2.Location        = new Point(439, 97);
     bunifuCustomLabel2.Name            = "bunifuCustomLabel2";
     bunifuCustomLabel2.Size            = new Size(77, 16);
     bunifuCustomLabel2.TabIndex        = 25;
     bunifuCustomLabel2.Text            = "Use Mutex :";
     bunifuCheckbox2.BackColor          = Color.SeaGreen;
     bunifuCheckbox2.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox2.Checked            = false;
     bunifuCheckbox2.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox2.ForeColor          = Color.White;
     bunifuCheckbox2.Location           = new Point(413, 96);
     bunifuCheckbox2.Name               = "bunifuCheckbox2";
     bunifuCheckbox2.Size               = new Size(20, 20);
     bunifuCheckbox2.TabIndex           = 24;
     bunifuCheckbox2.OnChange          += bunifuCheckbox2_OnChange;
     bunifuCustomTextbox1.BorderColor   = Color.SeaGreen;
     bunifuCustomTextbox1.BorderStyle   = BorderStyle.FixedSingle;
     bunifuCustomTextbox1.Font          = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox1.Location      = new Point(441, 133);
     bunifuCustomTextbox1.Multiline     = true;
     bunifuCustomTextbox1.Name          = "bunifuCustomTextbox1";
     bunifuCustomTextbox1.Size          = new Size(208, 23);
     bunifuCustomTextbox1.TabIndex      = 26;
     bunifuCustomTextbox1.Text          = "** Key **";
     bunifuCustomTextbox1.TextAlign     = HorizontalAlignment.Center;
     bunifuCustomLabel3.AutoSize        = true;
     bunifuCustomLabel3.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel3.Location        = new Point(439, 175);
     bunifuCustomLabel3.Name            = "bunifuCustomLabel3";
     bunifuCustomLabel3.Size            = new Size(85, 16);
     bunifuCustomLabel3.TabIndex        = 28;
     bunifuCustomLabel3.Text            = "Bypass UAC";
     bunifuCheckbox3.BackColor          = Color.SeaGreen;
     bunifuCheckbox3.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox3.Checked            = false;
     bunifuCheckbox3.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox3.ForeColor          = Color.White;
     bunifuCheckbox3.Location           = new Point(413, 174);
     bunifuCheckbox3.Name               = "bunifuCheckbox3";
     bunifuCheckbox3.Size               = new Size(20, 20);
     bunifuCheckbox3.TabIndex           = 27;
     bunifuCustomTextbox2.BorderColor   = Color.SeaGreen;
     bunifuCustomTextbox2.BorderStyle   = BorderStyle.FixedSingle;
     bunifuCustomTextbox2.Font          = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox2.Location      = new Point(522, 223);
     bunifuCustomTextbox2.Multiline     = true;
     bunifuCustomTextbox2.Name          = "bunifuCustomTextbox2";
     bunifuCustomTextbox2.Size          = new Size(41, 23);
     bunifuCustomTextbox2.TabIndex      = 31;
     bunifuCustomTextbox2.Text          = "5";
     bunifuCustomTextbox2.TextAlign     = HorizontalAlignment.Center;
     bunifuCustomLabel4.AutoSize        = true;
     bunifuCustomLabel4.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel4.Location        = new Point(439, 225);
     bunifuCustomLabel4.Name            = "bunifuCustomLabel4";
     bunifuCustomLabel4.Size            = new Size(78, 16);
     bunifuCustomLabel4.TabIndex        = 30;
     bunifuCustomLabel4.Text            = "Use Delay :";
     bunifuCheckbox4.BackColor          = Color.SeaGreen;
     bunifuCheckbox4.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox4.Checked            = false;
     bunifuCheckbox4.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox4.ForeColor          = Color.White;
     bunifuCheckbox4.Location           = new Point(413, 223);
     bunifuCheckbox4.Name               = "bunifuCheckbox4";
     bunifuCheckbox4.Size               = new Size(20, 20);
     bunifuCheckbox4.TabIndex           = 29;
     bunifuCustomLabel6.AutoSize        = true;
     bunifuCustomLabel6.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel6.Location        = new Point(28, 221);
     bunifuCustomLabel6.Name            = "bunifuCustomLabel6";
     bunifuCustomLabel6.Size            = new Size(43, 16);
     bunifuCustomLabel6.TabIndex        = 32;
     bunifuCustomLabel6.Text            = "Antis :";
     bunifuCustomLabel7.AutoSize        = true;
     bunifuCustomLabel7.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel7.Location        = new Point(77, 261);
     bunifuCustomLabel7.Name            = "bunifuCustomLabel7";
     bunifuCustomLabel7.Size            = new Size(73, 16);
     bunifuCustomLabel7.TabIndex        = 34;
     bunifuCustomLabel7.Text            = "Sandboxie";
     bunifuCheckbox5.BackColor          = Color.SeaGreen;
     bunifuCheckbox5.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox5.Checked            = false;
     bunifuCheckbox5.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox5.ForeColor          = Color.White;
     bunifuCheckbox5.Location           = new Point(51, 259);
     bunifuCheckbox5.Name               = "bunifuCheckbox5";
     bunifuCheckbox5.Size               = new Size(20, 20);
     bunifuCheckbox5.TabIndex           = 33;
     bunifuCustomLabel8.AutoSize        = true;
     bunifuCustomLabel8.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel8.Location        = new Point(77, 298);
     bunifuCustomLabel8.Name            = "bunifuCustomLabel8";
     bunifuCustomLabel8.Size            = new Size(137, 16);
     bunifuCustomLabel8.TabIndex        = 36;
     bunifuCustomLabel8.Text            = "Virtual Environnement";
     bunifuCheckbox6.BackColor          = Color.SeaGreen;
     bunifuCheckbox6.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox6.Checked            = false;
     bunifuCheckbox6.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox6.ForeColor          = Color.White;
     bunifuCheckbox6.Location           = new Point(51, 296);
     bunifuCheckbox6.Name               = "bunifuCheckbox6";
     bunifuCheckbox6.Size               = new Size(20, 20);
     bunifuCheckbox6.TabIndex           = 35;
     bunifuCustomLabel9.AutoSize        = true;
     bunifuCustomLabel9.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel9.Location        = new Point(77, 334);
     bunifuCustomLabel9.Name            = "bunifuCustomLabel9";
     bunifuCustomLabel9.Size            = new Size(69, 16);
     bunifuCustomLabel9.TabIndex        = 38;
     bunifuCustomLabel9.Text            = "Wireshark";
     bunifuCheckbox7.BackColor          = Color.SeaGreen;
     bunifuCheckbox7.ChechedOffColor    = Color.SeaGreen;
     bunifuCheckbox7.Checked            = false;
     bunifuCheckbox7.CheckedOnColor     = Color.SeaGreen;
     bunifuCheckbox7.ForeColor          = Color.White;
     bunifuCheckbox7.Location           = new Point(51, 332);
     bunifuCheckbox7.Name               = "bunifuCheckbox7";
     bunifuCheckbox7.Size               = new Size(20, 20);
     bunifuCheckbox7.TabIndex           = 37;
     bunifuCustomLabel10.AutoSize       = true;
     bunifuCustomLabel10.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel10.Location       = new Point(393, 14);
     bunifuCustomLabel10.Name           = "bunifuCustomLabel10";
     bunifuCustomLabel10.Size           = new Size(115, 16);
     bunifuCustomLabel10.TabIndex       = 39;
     bunifuCustomLabel10.Text           = "Process Settings :";
     bunifuCustomLabel11.AutoSize       = true;
     bunifuCustomLabel11.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel11.Location       = new Point(393, 263);
     bunifuCustomLabel11.Name           = "bunifuCustomLabel11";
     bunifuCustomLabel11.Size           = new Size(144, 16);
     bunifuCustomLabel11.TabIndex       = 40;
     bunifuCustomLabel11.Text           = "Stub Runtime Method : ";
     groupBox2.Controls.Add(chromeRadioButton13);
     groupBox2.Controls.Add(chromeRadioButton12);
     groupBox2.Controls.Add(chromeRadioButton11);
     groupBox2.Controls.Add(groupBox1);
     groupBox2.Location                  = new Point(31, 36);
     groupBox2.Name                      = "groupBox2";
     groupBox2.Size                      = new Size(271, 175);
     groupBox2.TabIndex                  = 43;
     groupBox2.TabStop                   = false;
     chromeRadioButton13.Checked         = false;
     chromeRadioButton13.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton13.Field           = 23;
     chromeRadioButton13.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton13.Image           = null;
     chromeRadioButton13.Location        = new Point(20, 125);
     chromeRadioButton13.Name            = "chromeRadioButton13";
     chromeRadioButton13.NoRounding      = false;
     chromeRadioButton13.Size            = new Size(95, 23);
     chromeRadioButton13.TabIndex        = 6;
     chromeRadioButton13.Text            = " Native";
     chromeRadioButton13.Transparent     = false;
     chromeRadioButton13.CheckedChanged += chromeRadioButton13_CheckedChanged;
     chromeRadioButton12.Checked         = false;
     chromeRadioButton12.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton12.Field           = 23;
     chromeRadioButton12.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton12.Image           = null;
     chromeRadioButton12.Location        = new Point(19, 81);
     chromeRadioButton12.Name            = "chromeRadioButton12";
     chromeRadioButton12.NoRounding      = false;
     chromeRadioButton12.Size            = new Size(95, 23);
     chromeRadioButton12.TabIndex        = 5;
     chromeRadioButton12.Text            = " .NET 4.0";
     chromeRadioButton12.Transparent     = false;
     chromeRadioButton12.CheckedChanged += chromeRadioButton12_CheckedChanged;
     chromeRadioButton11.Checked         = false;
     chromeRadioButton11.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton11.Field           = 23;
     chromeRadioButton11.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton11.Image           = null;
     chromeRadioButton11.Location        = new Point(20, 32);
     chromeRadioButton11.Name            = "chromeRadioButton11";
     chromeRadioButton11.NoRounding      = false;
     chromeRadioButton11.Size            = new Size(95, 23);
     chromeRadioButton11.TabIndex        = 4;
     chromeRadioButton11.Text            = " .NET 2.0";
     chromeRadioButton11.Transparent     = false;
     chromeRadioButton11.CheckedChanged += chromeRadioButton11_CheckedChanged;
     chromeRadioButton10.Checked         = false;
     chromeRadioButton10.Customization   = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton10.Field           = 23;
     chromeRadioButton10.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton10.Image           = null;
     chromeRadioButton10.Location        = new Point(413, 327);
     chromeRadioButton10.Name            = "chromeRadioButton10";
     chromeRadioButton10.NoRounding      = false;
     chromeRadioButton10.Size            = new Size(95, 23);
     chromeRadioButton10.TabIndex        = 44;
     chromeRadioButton10.Text            = " Auto Pump";
     chromeRadioButton10.Transparent     = false;
     chromeRadioButton9.Checked          = false;
     chromeRadioButton9.Customization    = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton9.Field            = 23;
     chromeRadioButton9.Font             = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton9.Image            = null;
     chromeRadioButton9.Location         = new Point(413, 298);
     chromeRadioButton9.Name             = "chromeRadioButton9";
     chromeRadioButton9.NoRounding       = false;
     chromeRadioButton9.Size             = new Size(95, 23);
     chromeRadioButton9.TabIndex         = 7;
     chromeRadioButton9.Text             = " Simple";
     chromeRadioButton9.Transparent      = false;
     base.AutoScaleDimensions            = new SizeF(6f, 13f);
     base.AutoScaleMode                  = AutoScaleMode.Font;
     BackColor       = Color.White;
     base.ClientSize = new Size(710, 370);
     base.Controls.Add(chromeRadioButton10);
     base.Controls.Add(chromeRadioButton9);
     base.Controls.Add(groupBox2);
     base.Controls.Add(bunifuCustomLabel11);
     base.Controls.Add(bunifuCustomLabel10);
     base.Controls.Add(bunifuCustomLabel9);
     base.Controls.Add(bunifuCheckbox7);
     base.Controls.Add(bunifuCustomLabel8);
     base.Controls.Add(bunifuCheckbox6);
     base.Controls.Add(bunifuCustomLabel7);
     base.Controls.Add(bunifuCheckbox5);
     base.Controls.Add(bunifuCustomLabel6);
     base.Controls.Add(bunifuCustomTextbox2);
     base.Controls.Add(bunifuCustomLabel4);
     base.Controls.Add(bunifuCheckbox4);
     base.Controls.Add(bunifuCustomLabel3);
     base.Controls.Add(bunifuCheckbox3);
     base.Controls.Add(bunifuCustomTextbox1);
     base.Controls.Add(bunifuCustomLabel2);
     base.Controls.Add(bunifuCheckbox2);
     base.Controls.Add(bunifuCustomLabel1);
     base.Controls.Add(bunifuCustomLabel5);
     base.Controls.Add(bunifuCheckbox1);
     base.FormBorderStyle = FormBorderStyle.None;
     base.Name            = "Injections";
     Text       = "Injections";
     base.Load += Injections_Load;
     groupBox1.ResumeLayout(false);
     groupBox2.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Example #12
0
 public void InitializeComponent()
 {
     bunifuCustomTextbox1 = new BunifuCustomTextbox();
     bunifuCustomLabel7   = new BunifuCustomLabel();
     bunifuCheckbox5      = new BunifuCheckbox();
     bunifuCustomLabel1   = new BunifuCustomLabel();
     bunifuCheckbox1      = new BunifuCheckbox();
     chromeRadioButton4   = new ChromeRadioButton();
     chromeRadioButton3   = new ChromeRadioButton();
     chromeRadioButton2   = new ChromeRadioButton();
     chromeRadioButton8   = new ChromeRadioButton();
     base.SuspendLayout();
     bunifuCustomTextbox1.AllowDrop    = true;
     bunifuCustomTextbox1.BackColor    = Color.White;
     bunifuCustomTextbox1.BorderColor  = Color.SeaGreen;
     bunifuCustomTextbox1.BorderStyle  = BorderStyle.FixedSingle;
     bunifuCustomTextbox1.Font         = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomTextbox1.Location     = new Point(12, 48);
     bunifuCustomTextbox1.Multiline    = true;
     bunifuCustomTextbox1.Name         = "bunifuCustomTextbox1";
     bunifuCustomTextbox1.ScrollBars   = ScrollBars.Horizontal;
     bunifuCustomTextbox1.Size         = new Size(686, 265);
     bunifuCustomTextbox1.TabIndex     = 1;
     bunifuCustomTextbox1.TextChanged += bunifuCustomTextbox1_TextChanged;
     bunifuCustomLabel7.AutoSize       = true;
     bunifuCustomLabel7.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel7.Location       = new Point(39, 17);
     bunifuCustomLabel7.Name           = "bunifuCustomLabel7";
     bunifuCustomLabel7.Size           = new Size(125, 16);
     bunifuCustomLabel7.TabIndex       = 39;
     bunifuCustomLabel7.Text           = "Add Custome Code";
     bunifuCheckbox5.BackColor         = Color.SeaGreen;
     bunifuCheckbox5.ChechedOffColor   = Color.SeaGreen;
     bunifuCheckbox5.Checked           = false;
     bunifuCheckbox5.CheckedOnColor    = Color.SeaGreen;
     bunifuCheckbox5.ForeColor         = Color.White;
     bunifuCheckbox5.Location          = new Point(13, 15);
     bunifuCheckbox5.Name              = "bunifuCheckbox5";
     bunifuCheckbox5.Size              = new Size(20, 20);
     bunifuCheckbox5.TabIndex          = 38;
     bunifuCustomLabel1.AutoSize       = true;
     bunifuCustomLabel1.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bunifuCustomLabel1.Location       = new Point(492, 332);
     bunifuCustomLabel1.Name           = "bunifuCustomLabel1";
     bunifuCustomLabel1.Size           = new Size(69, 16);
     bunifuCustomLabel1.TabIndex       = 46;
     bunifuCustomLabel1.Text           = "Obfuscate";
     bunifuCustomLabel1.Visible        = false;
     bunifuCheckbox1.BackColor         = Color.SeaGreen;
     bunifuCheckbox1.ChechedOffColor   = Color.SeaGreen;
     bunifuCheckbox1.Checked           = false;
     bunifuCheckbox1.CheckedOnColor    = Color.SeaGreen;
     bunifuCheckbox1.ForeColor         = Color.White;
     bunifuCheckbox1.Location          = new Point(467, 330);
     bunifuCheckbox1.Name              = "bunifuCheckbox1";
     bunifuCheckbox1.Size              = new Size(20, 20);
     bunifuCheckbox1.TabIndex          = 45;
     bunifuCheckbox1.Visible           = false;
     chromeRadioButton4.Checked        = false;
     chromeRadioButton4.Customization  = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton4.Field          = 23;
     chromeRadioButton4.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton4.Image          = null;
     chromeRadioButton4.Location       = new Point(131, 330);
     chromeRadioButton4.Name           = "chromeRadioButton4";
     chromeRadioButton4.NoRounding     = false;
     chromeRadioButton4.Size           = new Size(97, 23);
     chromeRadioButton4.TabIndex       = 44;
     chromeRadioButton4.Text           = "After Delay";
     chromeRadioButton4.Transparent    = false;
     chromeRadioButton3.Checked        = false;
     chromeRadioButton3.Customization  = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton3.Field          = 23;
     chromeRadioButton3.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton3.Image          = null;
     chromeRadioButton3.Location       = new Point(234, 330);
     chromeRadioButton3.Name           = "chromeRadioButton3";
     chromeRadioButton3.NoRounding     = false;
     chromeRadioButton3.Size           = new Size(114, 23);
     chromeRadioButton3.TabIndex       = 43;
     chromeRadioButton3.Text           = "Before Startup";
     chromeRadioButton3.Transparent    = false;
     chromeRadioButton2.Checked        = false;
     chromeRadioButton2.Customization  = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton2.Field          = 23;
     chromeRadioButton2.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton2.Image          = null;
     chromeRadioButton2.Location       = new Point(354, 330);
     chromeRadioButton2.Name           = "chromeRadioButton2";
     chromeRadioButton2.NoRounding     = false;
     chromeRadioButton2.Size           = new Size(104, 23);
     chromeRadioButton2.TabIndex       = 42;
     chromeRadioButton2.Text           = "After Startup";
     chromeRadioButton2.Transparent    = false;
     chromeRadioButton8.Checked        = false;
     chromeRadioButton8.Customization  = "AAAA////////////AAAA/wAAAP8=";
     chromeRadioButton8.Field          = 23;
     chromeRadioButton8.Font           = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     chromeRadioButton8.Image          = null;
     chromeRadioButton8.Location       = new Point(13, 330);
     chromeRadioButton8.Name           = "chromeRadioButton8";
     chromeRadioButton8.NoRounding     = false;
     chromeRadioButton8.Size           = new Size(112, 23);
     chromeRadioButton8.TabIndex       = 40;
     chromeRadioButton8.Text           = " Script Header";
     chromeRadioButton8.Transparent    = false;
     base.AutoScaleDimensions          = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     BackColor          = Color.White;
     base.ClientSize    = new Size(710, 370);
     base.Controls.Add(bunifuCustomLabel1);
     base.Controls.Add(bunifuCheckbox1);
     base.Controls.Add(chromeRadioButton4);
     base.Controls.Add(chromeRadioButton3);
     base.Controls.Add(chromeRadioButton2);
     base.Controls.Add(chromeRadioButton8);
     base.Controls.Add(bunifuCustomLabel7);
     base.Controls.Add(bunifuCheckbox5);
     base.Controls.Add(bunifuCustomTextbox1);
     base.FormBorderStyle = FormBorderStyle.None;
     base.Name            = "CustomCodeFrm";
     Text       = "v";
     base.Load += CustomCodeFrm_Load;
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Example #13
0
        private void InitializeComponent()
        {
            bunifuCustomTextbox1 = new BunifuCustomTextbox();
            bunifuCustomLabel1   = new BunifuCustomLabel();
            bunifuFlatButton2    = new BunifuFlatButton();
            bunifuCustomLabel2   = new BunifuCustomLabel();
            bunifuCustomTextbox2 = new BunifuCustomTextbox();
            bunifuFlatButton1    = new BunifuFlatButton();
            bunifuFlatButton3    = new BunifuFlatButton();
            bunifuFlatButton4    = new BunifuFlatButton();
            bunifuCustomTextbox3 = new BunifuCustomTextbox();
            bunifuCustomLabel3   = new BunifuCustomLabel();
            bunifuCustomLabel4   = new BunifuCustomLabel();
            chromeRadioButton1   = new ChromeRadioButton();
            chromeRadioButton11  = new ChromeRadioButton();
            chromeRadioButton2   = new ChromeRadioButton();
            chromeRadioButton3   = new ChromeRadioButton();
            bunifuCustomLabel5   = new BunifuCustomLabel();
            bunifuFlatButton5    = new BunifuFlatButton();
            bunifuCustomTextbox4 = new BunifuCustomTextbox();
            bunifuCheckbox5      = new BunifuCheckbox();
            bunifuFlatButton6    = new BunifuFlatButton();
            base.SuspendLayout();
            bunifuCustomTextbox1.BorderColor        = Color.SeaGreen;
            bunifuCustomTextbox1.BorderStyle        = BorderStyle.FixedSingle;
            bunifuCustomTextbox1.Font               = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomTextbox1.Location           = new Point(77, 38);
            bunifuCustomTextbox1.Multiline          = true;
            bunifuCustomTextbox1.Name               = "bunifuCustomTextbox1";
            bunifuCustomTextbox1.Size               = new Size(391, 28);
            bunifuCustomTextbox1.TabIndex           = 28;
            bunifuCustomTextbox1.Text               = "URL";
            bunifuCustomTextbox1.TextAlign          = HorizontalAlignment.Center;
            bunifuCustomLabel1.AutoSize             = true;
            bunifuCustomLabel1.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel1.Location             = new Point(58, 14);
            bunifuCustomLabel1.Name                 = "bunifuCustomLabel1";
            bunifuCustomLabel1.Size                 = new Size(87, 16);
            bunifuCustomLabel1.TabIndex             = 66;
            bunifuCustomLabel1.Text                 = "Downloader :";
            bunifuFlatButton2.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton2.BorderRadius          = 0;
            bunifuFlatButton2.ButtonText            = " Build";
            bunifuFlatButton2.Cursor                = Cursors.Hand;
            bunifuFlatButton2.Iconcolor             = Color.Transparent;
//			bunifuFlatButton2.Iconimage = Resources._null;
            bunifuFlatButton2.Iconimage_right          = null;
            bunifuFlatButton2.Iconimage_right_Selected = null;
            bunifuFlatButton2.Iconimage_Selected       = null;
            bunifuFlatButton2.IconZoom              = 1050.0;
            bunifuFlatButton2.IsTab                 = false;
            bunifuFlatButton2.Location              = new Point(77, 169);
            bunifuFlatButton2.Name                  = "bunifuFlatButton2";
            bunifuFlatButton2.Normalcolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.OnHovercolor          = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.OnHoverTextColor      = Color.White;
            bunifuFlatButton2.selected              = false;
            bunifuFlatButton2.Size                  = new Size(572, 29);
            bunifuFlatButton2.TabIndex              = 67;
            bunifuFlatButton2.Textcolor             = Color.White;
            bunifuFlatButton2.TextFont              = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton2.Click                += bunifuFlatButton2_Click;
            bunifuCustomLabel2.AutoSize             = true;
            bunifuCustomLabel2.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel2.Location             = new Point(58, 209);
            bunifuCustomLabel2.Name                 = "bunifuCustomLabel2";
            bunifuCustomLabel2.Size                 = new Size(138, 16);
            bunifuCustomLabel2.TabIndex             = 69;
            bunifuCustomLabel2.Text                 = "Version Info Changer :";
            bunifuCustomTextbox2.AllowDrop          = true;
            bunifuCustomTextbox2.BorderColor        = Color.SeaGreen;
            bunifuCustomTextbox2.BorderStyle        = BorderStyle.FixedSingle;
            bunifuCustomTextbox2.Font               = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomTextbox2.Location           = new Point(86, 266);
            bunifuCustomTextbox2.Multiline          = true;
            bunifuCustomTextbox2.Name               = "bunifuCustomTextbox2";
            bunifuCustomTextbox2.Size               = new Size(475, 29);
            bunifuCustomTextbox2.TabIndex           = 68;
            bunifuCustomTextbox2.TextAlign          = HorizontalAlignment.Center;
            bunifuFlatButton1.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton1.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton1.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton1.BorderRadius          = 0;
            bunifuFlatButton1.ButtonText            = "...";
            bunifuFlatButton1.Cursor                = Cursors.Hand;
            bunifuFlatButton1.Iconcolor             = Color.Transparent;
//			bunifuFlatButton1.Iconimage = Resources._null;
            bunifuFlatButton1.Iconimage_right          = null;
            bunifuFlatButton1.Iconimage_right_Selected = null;
            bunifuFlatButton1.Iconimage_Selected       = null;
            bunifuFlatButton1.IconZoom              = 60.0;
            bunifuFlatButton1.IsTab                 = false;
            bunifuFlatButton1.Location              = new Point(576, 266);
            bunifuFlatButton1.Name                  = "bunifuFlatButton1";
            bunifuFlatButton1.Normalcolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton1.OnHovercolor          = Color.FromArgb(23, 27, 35);
            bunifuFlatButton1.OnHoverTextColor      = Color.White;
            bunifuFlatButton1.selected              = false;
            bunifuFlatButton1.Size                  = new Size(73, 29);
            bunifuFlatButton1.TabIndex              = 70;
            bunifuFlatButton1.Textcolor             = Color.White;
            bunifuFlatButton1.TextFont              = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton1.Click                += bunifuFlatButton1_Click;
            bunifuFlatButton3.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton3.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton3.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton3.BorderRadius          = 0;
            bunifuFlatButton3.ButtonText            = " Change";
            bunifuFlatButton3.Cursor                = Cursors.Hand;
            bunifuFlatButton3.Iconcolor             = Color.Transparent;
//			bunifuFlatButton3.Iconimage = Resources._null;
            bunifuFlatButton3.Iconimage_right          = null;
            bunifuFlatButton3.Iconimage_right_Selected = null;
            bunifuFlatButton3.Iconimage_Selected       = null;
            bunifuFlatButton3.IconZoom              = 600.0;
            bunifuFlatButton3.IsTab                 = false;
            bunifuFlatButton3.Location              = new Point(275, 376);
            bunifuFlatButton3.Name                  = "bunifuFlatButton3";
            bunifuFlatButton3.Normalcolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton3.OnHovercolor          = Color.FromArgb(23, 27, 35);
            bunifuFlatButton3.OnHoverTextColor      = Color.White;
            bunifuFlatButton3.selected              = false;
            bunifuFlatButton3.Size                  = new Size(374, 29);
            bunifuFlatButton3.TabIndex              = 71;
            bunifuFlatButton3.Textcolor             = Color.White;
            bunifuFlatButton3.TextFont              = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton3.Click                += bunifuFlatButton3_Click;
            bunifuFlatButton4.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton4.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton4.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton4.BorderRadius          = 0;
            bunifuFlatButton4.ButtonText            = "...";
            bunifuFlatButton4.Cursor                = Cursors.Hand;
            bunifuFlatButton4.Iconcolor             = Color.Transparent;
//			bunifuFlatButton4.Iconimage = Resources._null;
            bunifuFlatButton4.Iconimage_right          = null;
            bunifuFlatButton4.Iconimage_right_Selected = null;
            bunifuFlatButton4.Iconimage_Selected       = null;
            bunifuFlatButton4.IconZoom              = 60.0;
            bunifuFlatButton4.IsTab                 = false;
            bunifuFlatButton4.Location              = new Point(576, 333);
            bunifuFlatButton4.Name                  = "bunifuFlatButton4";
            bunifuFlatButton4.Normalcolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton4.OnHovercolor          = Color.FromArgb(23, 27, 35);
            bunifuFlatButton4.OnHoverTextColor      = Color.White;
            bunifuFlatButton4.selected              = false;
            bunifuFlatButton4.Size                  = new Size(73, 29);
            bunifuFlatButton4.TabIndex              = 73;
            bunifuFlatButton4.Textcolor             = Color.White;
            bunifuFlatButton4.TextFont              = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton4.Click                += bunifuFlatButton4_Click;
            bunifuCustomTextbox3.AllowDrop          = true;
            bunifuCustomTextbox3.BorderColor        = Color.SeaGreen;
            bunifuCustomTextbox3.BorderStyle        = BorderStyle.FixedSingle;
            bunifuCustomTextbox3.Font               = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomTextbox3.Location           = new Point(86, 333);
            bunifuCustomTextbox3.Multiline          = true;
            bunifuCustomTextbox3.Name               = "bunifuCustomTextbox3";
            bunifuCustomTextbox3.Size               = new Size(475, 29);
            bunifuCustomTextbox3.TabIndex           = 72;
            bunifuCustomTextbox3.TextAlign          = HorizontalAlignment.Center;
            bunifuCustomLabel3.AutoSize             = true;
            bunifuCustomLabel3.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel3.Location             = new Point(83, 305);
            bunifuCustomLabel3.Name                 = "bunifuCustomLabel3";
            bunifuCustomLabel3.Size                 = new Size(142, 16);
            bunifuCustomLabel3.TabIndex             = 76;
            bunifuCustomLabel3.Text                 = "Version Info To Clone :";
            bunifuCustomLabel4.AutoSize             = true;
            bunifuCustomLabel4.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel4.Location             = new Point(83, 239);
            bunifuCustomLabel4.Name                 = "bunifuCustomLabel4";
            bunifuCustomLabel4.Size                 = new Size(36, 16);
            bunifuCustomLabel4.TabIndex             = 77;
            bunifuCustomLabel4.Text                 = "File :";
            chromeRadioButton1.Checked              = false;
            chromeRadioButton1.Customization        = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton1.Field                = 23;
            chromeRadioButton1.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            chromeRadioButton1.Image                = null;
            chromeRadioButton1.Location             = new Point(166, 379);
            chromeRadioButton1.Name                 = "chromeRadioButton1";
            chromeRadioButton1.NoRounding           = false;
            chromeRadioButton1.Size                 = new Size(95, 23);
            chromeRadioButton1.TabIndex             = 75;
            chromeRadioButton1.Text                 = "Random";
            chromeRadioButton1.Transparent          = false;
            chromeRadioButton11.Checked             = false;
            chromeRadioButton11.Customization       = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton11.Field               = 23;
            chromeRadioButton11.Font                = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            chromeRadioButton11.Image               = null;
            chromeRadioButton11.Location            = new Point(86, 379);
            chromeRadioButton11.Name                = "chromeRadioButton11";
            chromeRadioButton11.NoRounding          = false;
            chromeRadioButton11.Size                = new Size(95, 23);
            chromeRadioButton11.TabIndex            = 74;
            chromeRadioButton11.Text                = "Clone";
            chromeRadioButton11.Transparent         = false;
            chromeRadioButton2.Checked              = false;
            chromeRadioButton2.Customization        = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton2.Field                = 23;
            chromeRadioButton2.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            chromeRadioButton2.Image                = null;
            chromeRadioButton2.Location             = new Point(211, 138);
            chromeRadioButton2.Name                 = "chromeRadioButton2";
            chromeRadioButton2.NoRounding           = false;
            chromeRadioButton2.Size                 = new Size(125, 23);
            chromeRadioButton2.TabIndex             = 79;
            chromeRadioButton2.Text                 = "Frameworks 4.0";
            chromeRadioButton2.Transparent          = false;
            chromeRadioButton3.Checked              = false;
            chromeRadioButton3.Customization        = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton3.Field                = 23;
            chromeRadioButton3.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            chromeRadioButton3.Image                = null;
            chromeRadioButton3.Location             = new Point(77, 138);
            chromeRadioButton3.Name                 = "chromeRadioButton3";
            chromeRadioButton3.NoRounding           = false;
            chromeRadioButton3.Size                 = new Size(119, 23);
            chromeRadioButton3.TabIndex             = 78;
            chromeRadioButton3.Text                 = "Frameworks 2.0";
            chromeRadioButton3.Transparent          = false;
            bunifuCustomLabel5.AutoSize             = true;
            bunifuCustomLabel5.Font                 = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel5.Location             = new Point(102, 75);
            bunifuCustomLabel5.Name                 = "bunifuCustomLabel5";
            bunifuCustomLabel5.Size                 = new Size(78, 16);
            bunifuCustomLabel5.TabIndex             = 82;
            bunifuCustomLabel5.Text                 = "Bind A File :";
            bunifuFlatButton5.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton5.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton5.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton5.BorderRadius          = 0;
            bunifuFlatButton5.ButtonText            = "...";
            bunifuFlatButton5.Cursor                = Cursors.Hand;
            bunifuFlatButton5.Iconcolor             = Color.Transparent;
//			bunifuFlatButton5.Iconimage = Resources._null;
            bunifuFlatButton5.Iconimage_right          = null;
            bunifuFlatButton5.Iconimage_right_Selected = null;
            bunifuFlatButton5.Iconimage_Selected       = null;
            bunifuFlatButton5.IconZoom         = 60.0;
            bunifuFlatButton5.IsTab            = false;
            bunifuFlatButton5.Location         = new Point(567, 101);
            bunifuFlatButton5.Name             = "bunifuFlatButton5";
            bunifuFlatButton5.Normalcolor      = Color.FromArgb(23, 27, 35);
            bunifuFlatButton5.OnHovercolor     = Color.FromArgb(23, 27, 35);
            bunifuFlatButton5.OnHoverTextColor = Color.White;
            bunifuFlatButton5.selected         = false;
            bunifuFlatButton5.Size             = new Size(73, 29);
            bunifuFlatButton5.TabIndex         = 81;
            bunifuFlatButton5.Textcolor        = Color.White;
            bunifuFlatButton5.TextFont         = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton5.Click           += bunifuFlatButton5_Click;
            bunifuCustomTextbox4.AllowDrop     = true;
            bunifuCustomTextbox4.BorderColor   = Color.SeaGreen;
            bunifuCustomTextbox4.BorderStyle   = BorderStyle.FixedSingle;
            bunifuCustomTextbox4.Font          = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomTextbox4.Location      = new Point(77, 101);
            bunifuCustomTextbox4.Multiline     = true;
            bunifuCustomTextbox4.Name          = "bunifuCustomTextbox4";
            bunifuCustomTextbox4.Size          = new Size(475, 29);
            bunifuCustomTextbox4.TabIndex      = 80;
            bunifuCustomTextbox4.TextAlign     = HorizontalAlignment.Center;
            bunifuCheckbox5.BackColor          = Color.SeaGreen;
            bunifuCheckbox5.ChechedOffColor    = Color.SeaGreen;
            bunifuCheckbox5.Checked            = false;
            bunifuCheckbox5.CheckedOnColor     = Color.SeaGreen;
            bunifuCheckbox5.ForeColor          = Color.White;
            bunifuCheckbox5.Location           = new Point(77, 74);
            bunifuCheckbox5.Name                    = "bunifuCheckbox5";
            bunifuCheckbox5.Size                    = new Size(20, 20);
            bunifuCheckbox5.TabIndex                = 83;
            bunifuFlatButton6.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton6.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton6.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton6.BorderRadius          = 0;
            bunifuFlatButton6.ButtonText            = "Encrypt Your File";
            bunifuFlatButton6.Cursor                = Cursors.Hand;
            bunifuFlatButton6.Iconcolor             = Color.Transparent;
//			bunifuFlatButton6.Iconimage = Resources._null;
            bunifuFlatButton6.Iconimage_right          = null;
            bunifuFlatButton6.Iconimage_right_Selected = null;
            bunifuFlatButton6.Iconimage_Selected       = null;
            bunifuFlatButton6.IconZoom         = 50.0;
            bunifuFlatButton6.IsTab            = false;
            bunifuFlatButton6.Location         = new Point(474, 38);
            bunifuFlatButton6.Name             = "bunifuFlatButton6";
            bunifuFlatButton6.Normalcolor      = Color.FromArgb(23, 27, 35);
            bunifuFlatButton6.OnHovercolor     = Color.FromArgb(23, 27, 35);
            bunifuFlatButton6.OnHoverTextColor = Color.White;
            bunifuFlatButton6.selected         = false;
            bunifuFlatButton6.Size             = new Size(166, 29);
            bunifuFlatButton6.TabIndex         = 84;
            bunifuFlatButton6.Textcolor        = Color.White;
            bunifuFlatButton6.TextFont         = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton6.Click           += bunifuFlatButton6_Click;
            base.AutoScaleDimensions           = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            BackColor          = Color.White;
            base.ClientSize    = new Size(710, 426);
            base.Controls.Add(bunifuFlatButton6);
            base.Controls.Add(bunifuCheckbox5);
            base.Controls.Add(bunifuCustomLabel5);
            base.Controls.Add(bunifuFlatButton5);
            base.Controls.Add(bunifuCustomTextbox4);
            base.Controls.Add(chromeRadioButton2);
            base.Controls.Add(chromeRadioButton3);
            base.Controls.Add(bunifuCustomLabel4);
            base.Controls.Add(bunifuCustomLabel3);
            base.Controls.Add(chromeRadioButton1);
            base.Controls.Add(chromeRadioButton11);
            base.Controls.Add(bunifuFlatButton4);
            base.Controls.Add(bunifuCustomTextbox3);
            base.Controls.Add(bunifuFlatButton3);
            base.Controls.Add(bunifuFlatButton1);
            base.Controls.Add(bunifuCustomLabel2);
            base.Controls.Add(bunifuCustomTextbox2);
            base.Controls.Add(bunifuFlatButton2);
            base.Controls.Add(bunifuCustomLabel1);
            base.Controls.Add(bunifuCustomTextbox1);
            base.FormBorderStyle = FormBorderStyle.None;
            base.Name            = "ExtraFrm";
            Text       = "ExtraFrm";
            base.Load += ExtraFrm_Load;
            base.ResumeLayout(false);
            base.PerformLayout();
        }
        private void LoadKM()
        {
            flpKM.Controls.Clear();
            List <KhuyenMaiDTO> tableList = KhuyenMaiDAO.Instance.LoadDsKM();

            foreach (KhuyenMaiDTO item in tableList)
            {
                Panel          pn1 = new Panel();
                Panel          pn2 = new Panel();
                BunifuCheckbox chk = new BunifuCheckbox();
                Panel          pn3 = new Panel();
                Label          lb  = new Label();
                // panel1
                pn1.BackColor   = System.Drawing.Color.White;
                pn1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
                pn1.Controls.Add(pn3);
                pn1.Controls.Add(pn2);
                pn1.Location = new System.Drawing.Point(0, 295);
                pn1.Size     = new System.Drawing.Size(501, 54);
                // panel2
                pn2.Controls.Add(chk);
                pn2.Dock     = System.Windows.Forms.DockStyle.Left;
                pn2.Location = new System.Drawing.Point(0, 0);
                pn2.Size     = new System.Drawing.Size(57, 52);
                // bunifuCheckbox1
                chk.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
                chk.ChechedOffColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(135)))), ((int)(((byte)(140)))));
                chk.Checked         = false;
                chk.CheckedOnColor  = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(205)))), ((int)(((byte)(117)))));
                chk.ForeColor       = System.Drawing.Color.White;
                chk.Location        = new System.Drawing.Point(18, 17);
                chk.Size            = new System.Drawing.Size(20, 20);
                chk.OnChange       += (s, e) =>
                {
                    double km = 0;
                    if (txbKM.Text == string.Empty)
                    {
                        txbKM.Text = 0.ToString();
                    }
                    double km1       = -double.Parse(txbKM.Text);
                    double thanhTien = double.Parse(txbThanhTien.Text);
                    if (chk.Checked == true)
                    {
                        switch (item.IdLoaiKM)
                        {
                        case 1:
                            if (item.DieuKien != 0)
                            {
                                if (thanhTien >= item.DieuKien)
                                {
                                    km = (item.GiamGia * thanhTien / 100) + item.GiamTien;
                                    if (item.ToiDa != 0)
                                    {
                                        if (km > item.ToiDa)
                                        {
                                            km         = item.ToiDa;
                                            txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                        }
                                        else
                                        {
                                            txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                        }
                                    }
                                    else
                                    {
                                        txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                    }
                                }
                                else
                                {
                                    MessageBox.Show("Chương trình này chỉ áp dụng cho những hóa đơn có tổng thanh toán lớn hơn " + item.DieuKien + " !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                                    chk.Checked = false;
                                }
                            }
                            else
                            {
                                km = (item.GiamGia * thanhTien / 100) + item.GiamTien;
                                if (item.ToiDa != 0)
                                {
                                    if (km > item.ToiDa)
                                    {
                                        km         = item.ToiDa;
                                        txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                    }
                                    else
                                    {
                                        txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                    }
                                }
                                else
                                {
                                    txbKM.Text = String.Format("{0:0,0}", -(km + km1));
                                }
                            }
                            break;

                        case 2:
                            MessageBox.Show("Chưa làm hehe !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            break;
                        }
                    }
                    else
                    {
                        switch (item.IdLoaiKM)
                        {
                        case 1:
                            if (item.DieuKien != 0)
                            {
                                if (thanhTien >= item.DieuKien)
                                {
                                    km = (item.GiamGia * thanhTien / 100) + item.GiamTien;
                                    if (item.ToiDa != 0)
                                    {
                                        if (km > item.ToiDa)
                                        {
                                            km = item.ToiDa;
                                            if (km1 == 0)
                                            {
                                                txbKM.Text = 0.ToString();
                                            }
                                            else
                                            {
                                                txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                            }
                                        }
                                        else
                                        {
                                            if (km1 == 0)
                                            {
                                                txbKM.Text = 0.ToString();
                                            }
                                            else
                                            {
                                                txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                            }
                                        }
                                    }
                                    else
                                    {
                                        if (km1 == 0)
                                        {
                                            txbKM.Text = 0.ToString();
                                        }
                                        else
                                        {
                                            txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                        }
                                    }
                                }
                                else
                                {
                                    MessageBox.Show("Chương trình này chỉ áp dụng cho những hóa đơn có tổng thanh toán lớn hơn " + item.DieuKien + " !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                                    chk.Checked = false;
                                }
                            }
                            else
                            {
                                km = (item.GiamGia * thanhTien / 100) + item.GiamTien;
                                if (item.ToiDa != 0)
                                {
                                    if (km > item.ToiDa)
                                    {
                                        km = item.ToiDa;
                                        if (km1 == 0)
                                        {
                                            txbKM.Text = 0.ToString();
                                        }
                                        else
                                        {
                                            txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                        }
                                    }
                                    else
                                    {
                                        if (km1 == 0)
                                        {
                                            txbKM.Text = 0.ToString();
                                        }
                                        else
                                        {
                                            txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                        }
                                    }
                                }
                                else
                                if (km1 == 0)
                                {
                                    txbKM.Text = 0.ToString();
                                }
                                else
                                {
                                    txbKM.Text = String.Format("{0:0,0}", -(-km + km1));
                                }
                            }
                            break;

                        case 2:
                            MessageBox.Show("Chưa làm hehe !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            break;
                        }
                    }
                };
                //
                // panel3
                //
                pn3.Controls.Add(lb);
                pn3.Dock     = System.Windows.Forms.DockStyle.Fill;
                pn3.Location = new System.Drawing.Point(57, 0);
                pn3.Size     = new System.Drawing.Size(442, 52);
                //
                // label1
                //
                lb.Dock      = System.Windows.Forms.DockStyle.Fill;
                lb.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
                lb.Location  = new System.Drawing.Point(0, 0);
                lb.Size      = new System.Drawing.Size(442, 52);
                lb.Text      = item.TenKM;
                lb.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
                flpKM.Controls.Add(pn1);
            }
        }
Example #15
0
        public void InitializeComponent()
        {
            bunifuCustomTextbox1 = new BunifuCustomTextbox();
            bunifuFlatButton2    = new BunifuFlatButton();
            bunifuCustomLabel2   = new BunifuCustomLabel();
            bunifuProgressBar1   = new BunifuProgressBar();
            bunifuCustomLabel5   = new BunifuCustomLabel();
            bunifuCheckbox4      = new BunifuCheckbox();
            chromeRadioButton2   = new ChromeRadioButton();
            chromeRadioButton1   = new ChromeRadioButton();
            randomPool1          = new RandomPool();
            base.SuspendLayout();
            bunifuCustomTextbox1.BorderColor        = Color.SeaGreen;
            bunifuCustomTextbox1.BorderStyle        = BorderStyle.FixedSingle;
            bunifuCustomTextbox1.Font               = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomTextbox1.Location           = new Point(11, 226);
            bunifuCustomTextbox1.Multiline          = true;
            bunifuCustomTextbox1.Name               = "bunifuCustomTextbox1";
            bunifuCustomTextbox1.Size               = new Size(686, 23);
            bunifuCustomTextbox1.TabIndex           = 27;
            bunifuCustomTextbox1.TextAlign          = HorizontalAlignment.Center;
            bunifuFlatButton2.Activecolor           = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.BackColor             = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.BackgroundImageLayout = ImageLayout.Stretch;
            bunifuFlatButton2.BorderRadius          = 0;
            bunifuFlatButton2.ButtonText            = " Crypt";
            bunifuFlatButton2.Cursor    = Cursors.Hand;
            bunifuFlatButton2.Iconcolor = Color.Transparent;
//			bunifuFlatButton2.Iconimage = Resources._null;
            bunifuFlatButton2.Iconimage_right          = null;
            bunifuFlatButton2.Iconimage_right_Selected = null;
            bunifuFlatButton2.Iconimage_Selected       = null;
            bunifuFlatButton2.IconZoom         = 1300.0;
            bunifuFlatButton2.IsTab            = false;
            bunifuFlatButton2.Location         = new Point(12, 329);
            bunifuFlatButton2.Name             = "bunifuFlatButton2";
            bunifuFlatButton2.Normalcolor      = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.OnHovercolor     = Color.FromArgb(23, 27, 35);
            bunifuFlatButton2.OnHoverTextColor = Color.White;
            bunifuFlatButton2.selected         = false;
            bunifuFlatButton2.Size             = new Size(685, 29);
            bunifuFlatButton2.TabIndex         = 63;
            bunifuFlatButton2.Textcolor        = Color.White;
            bunifuFlatButton2.TextFont         = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuFlatButton2.Click           += bunifuFlatButton2_Click;
            bunifuCustomLabel2.AutoSize        = true;
            bunifuCustomLabel2.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel2.Location        = new Point(15, 267);
            bunifuCustomLabel2.Name            = "bunifuCustomLabel2";
            bunifuCustomLabel2.Size            = new Size(139, 16);
            bunifuCustomLabel2.TabIndex        = 66;
            bunifuCustomLabel2.Text            = "Encryption Algorithm : ";
            bunifuProgressBar1.BackColor       = Color.Silver;
            bunifuProgressBar1.BorderRadius    = 5;
            bunifuProgressBar1.Location        = new Point(11, 306);
            bunifuProgressBar1.MaximumValue    = 100;
            bunifuProgressBar1.Name            = "bunifuProgressBar1";
            bunifuProgressBar1.ProgressColor   = Color.SeaGreen;
            bunifuProgressBar1.Size            = new Size(686, 10);
            bunifuProgressBar1.TabIndex        = 28;
            bunifuProgressBar1.Value           = 0;
            bunifuCustomLabel5.AutoSize        = true;
            bunifuCustomLabel5.Font            = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            bunifuCustomLabel5.Location        = new Point(318, 267);
            bunifuCustomLabel5.Name            = "bunifuCustomLabel5";
            bunifuCustomLabel5.Size            = new Size(287, 16);
            bunifuCustomLabel5.TabIndex        = 70;
            bunifuCustomLabel5.Text            = "Compress With UPX (reduce the size by 400kb)";
            bunifuCheckbox4.BackColor          = Color.SeaGreen;
            bunifuCheckbox4.ChechedOffColor    = Color.SeaGreen;
            bunifuCheckbox4.Checked            = false;
            bunifuCheckbox4.CheckedOnColor     = Color.SeaGreen;
            bunifuCheckbox4.ForeColor          = Color.White;
            bunifuCheckbox4.Location           = new Point(292, 265);
            bunifuCheckbox4.Name             = "bunifuCheckbox4";
            bunifuCheckbox4.Size             = new Size(20, 20);
            bunifuCheckbox4.TabIndex         = 69;
            bunifuCheckbox4.OnChange        += bunifuCheckbox4_OnChange;
            chromeRadioButton2.Checked       = false;
            chromeRadioButton2.Customization = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton2.Field         = 23;
            chromeRadioButton2.Font          = new Font("Microsoft Sans Serif", 9.75f);
            chromeRadioButton2.Image         = null;
            chromeRadioButton2.Location      = new Point(218, 265);
            chromeRadioButton2.Name          = "chromeRadioButton2";
            chromeRadioButton2.NoRounding    = false;
            chromeRadioButton2.Size          = new Size(66, 23);
            chromeRadioButton2.TabIndex      = 68;
            chromeRadioButton2.Text          = "RC4";
            chromeRadioButton2.Transparent   = false;
            chromeRadioButton1.Checked       = false;
            chromeRadioButton1.Customization = "AAAA////////////AAAA/wAAAP8=";
            chromeRadioButton1.Field         = 23;
            chromeRadioButton1.Font          = new Font("Microsoft Sans Serif", 9.75f);
            chromeRadioButton1.Image         = null;
            chromeRadioButton1.Location      = new Point(159, 265);
            chromeRadioButton1.Name          = "chromeRadioButton1";
            chromeRadioButton1.NoRounding    = false;
            chromeRadioButton1.Size          = new Size(57, 23);
            chromeRadioButton1.TabIndex      = 67;
            chromeRadioButton1.Text          = "Xor";
            chromeRadioButton1.Transparent   = false;
            randomPool1.Font                = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            randomPool1.Image               = null;
            randomPool1.Location            = new Point(11, 10);
            randomPool1.Name                = "randomPool1";
            randomPool1.NoRounding          = false;
            randomPool1.Range               = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
            randomPool1.RangePadding        = 2;
            randomPool1.Size                = new Size(686, 206);
            randomPool1.TabIndex            = 0;
            randomPool1.Text                = "randomPool1";
            randomPool1.CharacterSelection += randomPool1_CharacterSelection;
            randomPool1.Click              += randomPool1_Click;
            base.AutoScaleDimensions        = new SizeF(6f, 13f);
            base.AutoScaleMode              = AutoScaleMode.Font;
            BackColor       = Color.White;
            base.ClientSize = new Size(710, 370);
            base.Controls.Add(bunifuCustomLabel5);
            base.Controls.Add(bunifuCheckbox4);
            base.Controls.Add(chromeRadioButton2);
            base.Controls.Add(chromeRadioButton1);
            base.Controls.Add(bunifuCustomLabel2);
            base.Controls.Add(bunifuFlatButton2);
            base.Controls.Add(bunifuProgressBar1);
            base.Controls.Add(bunifuCustomTextbox1);
            base.Controls.Add(randomPool1);
            base.FormBorderStyle = FormBorderStyle.None;
            base.Name            = "BuildFrm";
            Text       = "BuildFrm";
            base.Load += BuildFrm_Load;
            base.ResumeLayout(false);
            base.PerformLayout();
        }