终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

22 linhas
819 B

  1. using BPA.Helper;
  2. namespace BPASmartClient.DosingSystem
  3. {
  4. public class ViewModelBase : NotifyBase
  5. {
  6. public int Index { get; set; } = -1;
  7. public BPARelayCommand AddCommand { get; set; }//添加
  8. public BPARelayCommand CancelCommand { get; set; }//取消
  9. public BPARelayCommand SaveCommand { get; set; }//保存
  10. public BPARelayCommand<object> RemoveCommand { get; set; }//移除
  11. public BPARelayCommand<object> DetailsCommand { get; set; }//编辑
  12. public BPARelayCommand TextChanged { get; set; }//输入变化
  13. /// <summary>
  14. /// 错误信息
  15. /// </summary>
  16. public string ErrorInfo { get { return _mErrorInfo; } set { _mErrorInfo = value; OnPropertyChanged(); } }
  17. private string _mErrorInfo = string.Empty;
  18. }
  19. }