EnterMinCostForAgentWindow.xaml.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 wpf_connection3.Windows
  15. {
  16. public partial class EnterMinCostForAgentWindow : Window
  17. {
  18. public EnterMinCostForAgentWindow(decimal AvgCost)
  19. {
  20. InitializeComponent();
  21. CostTextBox.Text = AvgCost.ToString();
  22. }
  23. public decimal Result;
  24. private void Button_Click(object sender, RoutedEventArgs e)
  25. {
  26. try
  27. {
  28. // пробуем сконвертировать в число
  29. Result = Convert.ToDecimal(CostTextBox.Text);
  30. // при присвоении результата свойству DialogResult модальное окно закрывается
  31. DialogResult = true;
  32. }
  33. catch (Exception)
  34. {
  35. MessageBox.Show("Стоимость должна быть числом");
  36. }
  37. }
  38. }
  39. }