//Edit profile button clicked
        private void pictureBox4_Click(object sender, EventArgs e)
        {
            EditProfile editProfile = new EditProfile();

            editProfile.Show();
            this.Hide();
        }
예제 #2
0
        //Edit profile button clicked
        private void EditProfileButton_Click(object sender, EventArgs e)
        {
            EditProfile editProfile = new EditProfile();

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