Esempio n. 1
0
        private void buttonRedProfile_Click(object sender, EventArgs e)
        {
            FormRunnerEditProfile runnerEditProfile = new FormRunnerEditProfile(email);

            runnerEditProfile.Show();
            this.Hide();
        }
Esempio n. 2
0
        private void editProfileButton_Click(object sender, EventArgs e)
        {
            FormRunnerEditProfile runnerEditProfile = new FormRunnerEditProfile(email);

            runnerEditProfile.labelEmail.Text = emailUserLabel.Text;

            runnerEditProfile.Show();
            this.Hide();
        }