MainWindow.xaml.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.Navigation;
  14. using System.Windows.Shapes;
  15. namespace HotelCalifornia
  16. {
  17. /// <summary>
  18. /// Логика взаимодействия для MainWindow.xaml
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. public MainWindow()
  23. {
  24. InitializeComponent();
  25. }
  26. private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
  27. {
  28. DragMove();
  29. }
  30. private void Close(object sender, RoutedEventArgs e)
  31. {
  32. MessageBoxResult result = MessageBox.Show("Вы хотите выйти из приложения?", "Предупреждение", MessageBoxButton.YesNo, MessageBoxImage.Question);
  33. switch (result)
  34. {
  35. case MessageBoxResult.Yes:
  36. Application.Current.Shutdown();
  37. break;
  38. case MessageBoxResult.No:
  39. break;
  40. }
  41. }
  42. private void Vhod(object sender, RoutedEventArgs e)
  43. {
  44. if (logintxt.Text == "" || passwordtxt.Password == "")
  45. {
  46. MessageBox.Show("Поля не могут быть пустыми!", "Предупреждение", MessageBoxButton.OK, MessageBoxImage.Information);
  47. }
  48. }
  49. }
  50. }