Ejemplo n.º 1
0
        private void PictureBoxProfileClick(object sender, EventArgs e)
        {
            FormProfiel formProfiel = new FormProfiel();

            this.Hide();
            formProfiel.Show();
        }
Ejemplo n.º 2
0
        private void PictureBoxMyaccountClick(object sender, EventArgs e)
        {
            FormProfiel profielPagina = new FormProfiel();

            this.Hide();
            profielPagina.Show();
        }
Ejemplo n.º 3
0
        private void PictureBoxMyProfileClick(object sender, EventArgs e)
        {
            FormProfiel profielScherm = new FormProfiel();

            this.Hide();
            profielScherm.Show();
        }
Ejemplo n.º 4
0
        private void LabelMyaccountClick(object sender, EventArgs e)
        {
            FormProfiel profielScherm = new FormProfiel();

            this.Hide();
            profielScherm.Show();
        }
Ejemplo n.º 5
0
 private void LogInKnopClick(object sender, EventArgs e)
 {
     if (FormProfiel.LogIn(GebruikersNaamBox, WachtWoordBox))
     {
         ShowLabel(true);
         GebruikersNaamLabel.Text = FormProfiel.itemJson.username.ToString();
         EmailLabel.Text          = FormProfiel.itemJson.email.ToString();
     }
 }
Ejemplo n.º 6
0
        private void LabelMyaccountClick(object sender, EventArgs e)
        {
            if (FormProfiel.loggedIn)
            {
                FormProfiel profielPagina = new FormProfiel();
                this.Hide();
                profielPagina.Show();
            }

            else
            {
                FormProfiel profielPagina = new FormProfiel();
                this.Hide();
                profielPagina.Show();
            }
        }