QueryPurchaseViewModel.cs 712 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using GalaSoft.MvvmLight;
  6. namespace Muchinfo.MTPClient.Sale.ViewModels
  7. {
  8. public class QueryPurchaseViewModel : ViewModelBase
  9. {
  10. #region 构造函数
  11. public QueryPurchaseViewModel()
  12. {
  13. }
  14. #endregion
  15. #region 成员变量
  16. private bool _isBusy;
  17. /// <summary>
  18. /// 忙等待
  19. /// </summary>
  20. public bool IsBusy
  21. {
  22. get { return _isBusy; }
  23. set
  24. {
  25. Set(() => IsBusy, ref _isBusy, value);
  26. }
  27. }
  28. #endregion
  29. #region 方法
  30. #endregion
  31. }
  32. }