Exemplo n.º 1
0
 private void formLogIn_Load(object sender, EventArgs e)
 {
     SpeedUpPanel();
     FormStartTransition.ShowAsyc(this);
     this.textboxPASSlogin._TextBox.PasswordChar      = '*';
     this.xuiSlidingPanelForgotPass.CollapseControl   = this.bunifuImageButtonBACK;
     this.xuiSlidingPanelREGISTRATION.CollapseControl = this.bunifuImageButtonBACK_Reg;
 }
Exemplo n.º 2
0
 public formUSER(int id)
 {
     InitializeComponent();
     userID = id;
     ReadThemeAsync();
     FormStartTransition.ShowAsyc(this);
     GetInfoIntoComboBoxes();
     SetPictureProfile();
     FillPC();
     metroComboBoxTYPEofPC.SelectedIndex = 0;
     metroComboBoxCPUsort.SelectedIndex  = 0;
     metroComboBoxGPUsort.SelectedIndex  = 0;
     metroComboBoxRAM.SelectedIndex      = 0;
 }
Exemplo n.º 3
0
Arquivo: BIN.cs Projeto: Jeffeek/PCbuy
        public BIN(int userID)
        {
            InitializeComponent();
            _userId = userID;
            ReadThemeAsync();
            FormStartTransition.ShowAsyc(this);
            metroLabelID.Text += userID;
            CreateListOfProducts();

            if (ListBIN.Count > 0)
            {
                imageButtonCONFIRMorder.BackColor = Color.SeaGreen;
                imageButtonCONFIRMorder.Enabled   = true;
                imageButtonCONFIRMorder.Image     = Resources.ok;
            }
        }