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