ViborUpdateRaspisaniye.xaml.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Shapes;
  14. namespace KursachMukha692gr
  15. {
  16. /// <summary>
  17. /// Логика взаимодействия для ViborUpdateRaspisaniye.xaml
  18. /// </summary>
  19. public partial class ViborUpdateRaspisaniye : Window
  20. {
  21. public ViborUpdateRaspisaniye()
  22. {
  23. InitializeComponent();
  24. }
  25. private void Button_Click_Back(object sender, RoutedEventArgs e)
  26. {
  27. Raspisaniye raspisaniye = new Raspisaniye();
  28. raspisaniye.Show();
  29. Close();
  30. }
  31. private void Button_Click_Corpus(object sender, RoutedEventArgs e)
  32. {
  33. IdCorpusUpdateRaspisaniye corpusUpdateRaspisaniye = new IdCorpusUpdateRaspisaniye();
  34. corpusUpdateRaspisaniye.Show();
  35. Close();
  36. }
  37. private void Button_Click_Trener(object sender, RoutedEventArgs e)
  38. {
  39. IdTrenerUpdateRaspisaniye trenerUpdateRaspisaniye = new IdTrenerUpdateRaspisaniye();
  40. trenerUpdateRaspisaniye.Show();
  41. Close();
  42. }
  43. private void Button_Click_Zal(object sender, RoutedEventArgs e)
  44. {
  45. IdZalUpdateRaspisaniye updateRaspisaniye = new IdZalUpdateRaspisaniye();
  46. updateRaspisaniye.Show();
  47. Close();
  48. }
  49. private void Button_Click_Dis(object sender, RoutedEventArgs e)
  50. {
  51. IdDisUpdateRaspisaniye updateRaspisaniye = new IdDisUpdateRaspisaniye();
  52. updateRaspisaniye.Show();
  53. Close();
  54. }
  55. private void Button_Click_Gruppa(object sender, RoutedEventArgs e)
  56. {
  57. UpdateGruppaRaspisaniye updateGruppaRaspisaniye = new UpdateGruppaRaspisaniye();
  58. updateGruppaRaspisaniye.Show();
  59. Close();
  60. }
  61. private void Button_Click_Time(object sender, RoutedEventArgs e)
  62. {
  63. IdVremyaUpdateRaspisaniye vremyaUpdateRaspisaniye = new IdVremyaUpdateRaspisaniye();
  64. vremyaUpdateRaspisaniye.Show();
  65. Close();
  66. }
  67. private void Button_Click_Den(object sender, RoutedEventArgs e)
  68. {
  69. IdDenUpdateRaspisaniye updateRaspisaniye = new IdDenUpdateRaspisaniye();
  70. updateRaspisaniye.Show();
  71. Close();
  72. }
  73. }
  74. }