コード例 #1
0
ファイル: contactForm.cs プロジェクト: Mohamad321/PorjectB
        private void PictureBoxProfileClick(object sender, EventArgs e)
        {
            FormProfiel formProfiel = new FormProfiel();

            this.Hide();
            formProfiel.Show();
        }
コード例 #2
0
        private void PictureBoxMyaccountClick(object sender, EventArgs e)
        {
            FormProfiel profielPagina = new FormProfiel();

            this.Hide();
            profielPagina.Show();
        }
コード例 #3
0
        private void PictureBoxMyProfileClick(object sender, EventArgs e)
        {
            FormProfiel profielScherm = new FormProfiel();

            this.Hide();
            profielScherm.Show();
        }
コード例 #4
0
        private void LabelMyaccountClick(object sender, EventArgs e)
        {
            FormProfiel profielScherm = new FormProfiel();

            this.Hide();
            profielScherm.Show();
        }
コード例 #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();
     }
 }
コード例 #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();
            }
        }