Ejemplo n.º 1
0
        private void insButton_Click(object sender, RoutedEventArgs e)
        {
            InstructionWindow.setLastWindowLocation(Application.Current.MainWindow.Top, Application.Current.MainWindow.Left);
            InstructionWindow instructionWindow = new InstructionWindow();

            instructionWindow.Show();
            InstructionSwitcher.Switch(InstructionSwitcher.home);
        }
Ejemplo n.º 2
0
 private void PrevPage_click(object sender, RoutedEventArgs e)
 {
     Home.states.RemoveAt(Home.states.Count - 1);
     InstructionSwitcher.Switch(Home.states[Home.states.Count - 1]);
 }
Ejemplo n.º 3
0
 private void NextPage_Click(object sender, RoutedEventArgs e)
 {
     Home.states.Add(InstructionSwitcher.exportProj4);
     Home.states.ForEach(Console.WriteLine);
     InstructionSwitcher.Switch(InstructionSwitcher.exportProj4);
 }
Ejemplo n.º 4
0
 private void homebutton_Click(object sender, RoutedEventArgs e)
 {
     InstructionSwitcher.Switch(InstructionSwitcher.home);
 }
Ejemplo n.º 5
0
 private void menu2Click(object sender, RoutedEventArgs e)
 {
     Home.states.Add(InstructionSwitcher.editProj1);
     Home.states.ForEach(Console.WriteLine);
     InstructionSwitcher.Switch(InstructionSwitcher.editProj1);
 }
Ejemplo n.º 6
0
 private void NextPage_Click(object sender, RoutedEventArgs e)
 {
     InstructionSwitcher.Switch(InstructionSwitcher.createProj2);
 }