windChangePriority.xaml.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. namespace DemoTest_Boldin_41P
  16. {
  17. /// <summary>
  18. /// Логика взаимодействия для pgChangePriority.xaml
  19. /// </summary>
  20. public partial class windChangePriority : Window
  21. {
  22. List<Agent> LAg;
  23. IList lAgents;
  24. public windChangePriority(IList lAgents)
  25. {
  26. InitializeComponent();
  27. this.lAgents = lAgents;
  28. LAg = new List<Agent>();
  29. foreach(Agent a in lAgents)
  30. {
  31. LAg.Add(a);
  32. }
  33. tbPrior.Text = LAg.Max(x => x.Priority).ToString();
  34. }
  35. private void Button_Click(object sender, RoutedEventArgs e)
  36. {
  37. try
  38. {
  39. if (Convert.ToInt32(tbPrior.Text) >= 0)
  40. {
  41. foreach (Agent a in LAg)
  42. {
  43. a.Priority = Convert.ToInt32(tbPrior.Text);
  44. }
  45. BaseConnect.BaseModel.SaveChanges();
  46. MessageBox.Show("Данные успешно изменены!");
  47. }
  48. else
  49. MessageBox.Show("Приоритет не может быть отрицательным!");
  50. }
  51. catch
  52. {
  53. MessageBox.Show("Проверьте правильность введенных данных!");
  54. }
  55. }
  56. }
  57. }