private void LoginButton_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Dashboard.Dashboard_Window());
 }
 private void LogoutButton_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Portal.Portal());
 }
 private void AddTasksButton_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Tasks.AddTask());
 }
 private void addTaskButton_Click(object sender, RoutedEventArgs e)
 {
     // Get the task. Give to Dashboard or service
     SwitchWindow.Switch(this, new Dashboard.Dashboard_Window());
 }
 private void goToExpensesWindow(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Expenses.MainWindow());
 }
Example #6
0
 private void saveExpenseTypeButton_Click(object sender, RoutedEventArgs e)
 {
     // Get expense type and save/call save service
     SwitchWindow.Switch(this, new MainWindow());
 }
Example #7
0
 private void backToExpensePage_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new MainWindow());
 }
Example #8
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new EditExpenses());
 }
Example #9
0
 private void addExpenseTypeButton_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new AddExpenseType());
 }
Example #10
0
 private void returnToMainMenu_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Dashboard.Dashboard_Window());
 }
Example #11
0
 private void naruSwitch_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new Dashboard.Dashboard_Window(true));
 }
Example #12
0
 private void backButton_Click(object sender, RoutedEventArgs e)
 {
     SwitchWindow.Switch(this, new MainWindow());
 }