Beispiel #1
0
 /// <summary>
 /// Constructor for the SignupPage
 /// </summary>
 public SignupPage()
 {
     InitializeComponent();
     signupController = new SignupController();
     signupWindow     = this;
 }
Beispiel #2
0
        /// <summary>
        /// On Click event delegate for the New Account button
        /// </summary>
        /// <param name="sender">Sender of this event</param>
        /// <param name="e">Event reference</param>
        private void NewAccButton_Click(object sender, RoutedEventArgs e)
        {
            SignupPage signupPage = new SignupPage();

            this.NavigationService.Navigate(signupPage);
        }