private void btnLoggedUser_Click(object sender, EventArgs e)
        {
            Settings_Forms.MyProfileForm profile = new Settings_Forms.MyProfileForm();

            profile.ShowDialog();
        }
 private void openMyProfileToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Settings_Forms.MyProfileForm myProfile = new Settings_Forms.MyProfileForm();
     myProfile.ShowDialog();
 }
示例#3
0
        private void btnMyProfile_Click(object sender, EventArgs e)
        {
            MyProfileForm profile = new MyProfileForm();

            profile.ShowDialog();
        }