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

            runnerEditProfile.Show();
            this.Hide();
        }
Exemplo 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();
        }