private void hl_newAccount_Click(object sender, RoutedEventArgs e) { CreateEditAccountWindow createAccount = new CreateEditAccountWindow(null); createAccount.ShowDialog(); }
private void ProfileEditClick(object sender, RoutedEventArgs e) { CreateEditAccountWindow profileEditWindow = new CreateEditAccountWindow(((MovieOrganizerApp)Application.Current).CurrentUser); profileEditWindow.ShowDialog(); }