| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using GalaSoft.MvvmLight;
- namespace Muchinfo.MTPClient.Sale.ViewModels
- {
- public class QueryPurchaseViewModel : ViewModelBase
- {
- #region 构造函数
- public QueryPurchaseViewModel()
- {
- }
- #endregion
- #region 成员变量
- private bool _isBusy;
- /// <summary>
- /// 忙等待
- /// </summary>
- public bool IsBusy
- {
- get { return _isBusy; }
- set
- {
- Set(() => IsBusy, ref _isBusy, value);
- }
- }
- #endregion
- #region 方法
- #endregion
- }
- }
|