WindowOrder.xaml.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // Подключаемые библиотеки
  2. using System;
  3. using System.IO;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Shapes;
  16. namespace Met_Fam
  17. {
  18. /// <summary>
  19. /// Логика взаимодействия для WindowOrder.xaml
  20. /// </summary>
  21. public partial class WindowOrder : Window
  22. {
  23. List<Goods> goods = new List<Goods>();
  24. User user = new User();
  25. // Подсчет итоговой стоимости
  26. public WindowOrder(List<Goods> goods)
  27. {
  28. InitializeComponent();
  29. int finalecost = 0;
  30. foreach (Goods goodsForBuing in goods)
  31. {
  32. finalecost += goodsForBuing.Price_Goods * goodsForBuing.CountfForBuing;
  33. }
  34. coast.Text = "Итоговая стоимость" + finalecost.ToString();
  35. }
  36. // Кнопка для перехода в Профиль
  37. private void Button_Click(object sender, RoutedEventArgs e)
  38. {
  39. new WindowProf(user).Show();
  40. this.Close();
  41. }
  42. // Кнопка для перехода в Магазин
  43. private void Button_Click_1(object sender, RoutedEventArgs e)
  44. {
  45. new WindowShop(user).Show();
  46. this.Close();
  47. }
  48. // Кнопка для проведения оплаты и записы данных карт в csv файл
  49. private void Button_Click_2(object sender, RoutedEventArgs e)
  50. {
  51. Goods good = new Goods();
  52. string path = "Buy.csv";
  53. using (StreamWriter sw = new StreamWriter(File.Open(path, FileMode.Append)))
  54. {
  55. sw.WriteLineAsync(txtKarta.Text + ";" + txtCvv.Text);
  56. }
  57. MessageBox.Show("Оплата прошла успешно");
  58. }
  59. }
  60. }