EmployeeCard.xaml.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 RR2.UI.Views
  15. {
  16. /// <summary>
  17. /// Логика взаимодействия для CreateModule.xaml
  18. /// </summary>
  19. public partial class EmployeeCard : Window
  20. {
  21. public EmployeeCard()
  22. {
  23. InitializeComponent();
  24. }
  25. // Перетаскивание формы
  26. private void Border_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  27. {
  28. this.DragMove();
  29. }
  30. // Кнопки скрытия,свертывания и закрытия
  31. private void CloseBtn_Click(object sender, RoutedEventArgs e)
  32. {
  33. Close();
  34. }
  35. private void MobilePhone_PreviewTextInput(object sender, TextCompositionEventArgs e)
  36. {
  37. }
  38. private void MobilePhone_PreviewKeyDown(object sender, KeyEventArgs e)
  39. {
  40. }
  41. private void strucBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
  42. {
  43. }
  44. private void positBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
  45. {
  46. }
  47. }
  48. }