OrderComfirm.xaml.cs 870 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Shapes;
  13. namespace Muchinfo.MTPClient.Infrastructure.MessageBox
  14. {
  15. /// <summary>
  16. /// OrderComfirm.xaml 的交互逻辑
  17. /// </summary>
  18. public partial class OrderComfirm : Window
  19. {
  20. public OrderComfirm()
  21. {
  22. InitializeComponent();
  23. }
  24. private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
  25. {
  26. this.DialogResult = false;
  27. }
  28. private void ButtonOk_OnClick(object sender, RoutedEventArgs e)
  29. {
  30. this.DialogResult = true;
  31. }
  32. }
  33. }