Exemplo n.º 1
0
        private void EditProfileButton_Click(object sender, EventArgs e)
        {
            ProfileEditForm form = new ProfileEditForm(_user, false);

            form.ShowDialog();
        }
Exemplo n.º 2
0
        private void OpenEditForm(User user)
        {
            ProfileEditForm profileForm = new ProfileEditForm(user);

            profileForm.ShowDialog();
        }