WindowBasket.xaml.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Подключаемые библиотеки
  2. using System;
  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 Met_Fam
  16. {
  17. /// <summary>
  18. /// Логика взаимодействия для WindowBasket.xaml
  19. /// </summary>
  20. public partial class WindowBasket : Window
  21. {
  22. List<Goods> goods = new List<Goods>();
  23. User user = new User();
  24. // Блок подсчета суммы заказа
  25. public WindowBasket(List<Goods> goods)
  26. {
  27. InitializeComponent();
  28. LBAllGoods.ItemsSource = goods;
  29. this.goods = goods;
  30. int finalecost = 0;
  31. foreach(Goods goodsForBuing in goods)
  32. {
  33. finalecost += goodsForBuing.Price_Goods * goodsForBuing.CountfForBuing;
  34. }
  35. finalycost.Text = finalecost.ToString();
  36. }
  37. // Кнопка для перехода в Профиль
  38. private void Button_Click(object sender, RoutedEventArgs e)
  39. {
  40. new WindowProf(user).Show();
  41. this.Close();
  42. }
  43. // Кнопка для перехода в Магазин
  44. private void Button_Click_1(object sender, RoutedEventArgs e)
  45. {
  46. new WindowShop(user).Show();
  47. this.Close();
  48. }
  49. // Кнопка для перехода в окно для формирования заказа
  50. private void Button_Click_2(object sender, RoutedEventArgs e)
  51. {
  52. new WindowOrder(goods).Show();
  53. this.Close();
  54. }
  55. }
  56. }