LoadingView.xaml.cs 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing.Drawing2D;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading;
  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 LampInspectionMachine.Views
  17. {
  18. /// <summary>
  19. /// LoadingView.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class LoadingView : Window
  22. {
  23. private string str="";
  24. public LoadingView()
  25. {
  26. InitializeComponent();
  27. }
  28. public string Str
  29. {
  30. get => str;
  31. set
  32. {
  33. str = value;
  34. Msg.Content = value;
  35. }
  36. }
  37. }
  38. }