ChangePriority.xaml.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 WhiteList
  15. {
  16. /// <summary>
  17. /// Логика взаимодействия для ChangePriority.xaml
  18. /// </summary>
  19. public partial class ChangePriority : Window
  20. {
  21. List<Agent> _listAgents;
  22. int count; //сохранение числа из текст бокса
  23. public ChangePriority(List<Agent> list)
  24. {
  25. InitializeComponent();
  26. _listAgents = list;
  27. int max = 0;
  28. foreach(Agent a in list) //ищем максимальный приоритет
  29. {
  30. if(a.Priority>max)
  31. {
  32. max = a.Priority;
  33. }
  34. }
  35. TextBoxNewPriority.Text = "" + max;
  36. count = max;
  37. }
  38. private void Save_Click(object sender, RoutedEventArgs e)
  39. {
  40. foreach(Agent a in _listAgents) //изменяем данные
  41. {
  42. a.Priority += count;
  43. }
  44. DB.dbCon.SaveChanges();
  45. Close();
  46. MessageBox.Show("Данные сохранены");
  47. }
  48. private void TextBoxNewPriority_TextChanged(object sender, TextChangedEventArgs e) //проверка на число в текстбоксе
  49. {
  50. try
  51. {
  52. if(TextBoxNewPriority.Text!="-"&& TextBoxNewPriority.Text!="")
  53. {
  54. count = Convert.ToInt32(TextBoxNewPriority.Text);
  55. }
  56. }
  57. catch
  58. {
  59. TextBoxNewPriority.Text = "" + count;
  60. MessageBox.Show("Можно вводить только целое число");
  61. }
  62. }
  63. }
  64. }