终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

36 righe
981 B

  1. using BPA.Helper;
  2. using BPA.Helper;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.ViewModel
  9. {
  10. public class AdminstratorsViewModel:NotifyBase
  11. {
  12. public string Admin { get { return _admin; } set { _admin = value; OnPropertyChanged(); } }
  13. private string _admin;
  14. public string Password { get { return _password; } set { _password = value; OnPropertyChanged(); } }
  15. private string _password;
  16. public string ErrorMessage { get { return _errorMessage; } set { _errorMessage = value; OnPropertyChanged(); } }
  17. private string _errorMessage;
  18. public BPARelayCommand AdminLoginCommand { get; set; }
  19. public AdminstratorsViewModel()
  20. {
  21. AdminLoginCommand = new BPARelayCommand(() =>
  22. {
  23. ActionManage.GetInstance.Send("LoginSuccess");
  24. });
  25. }
  26. }
  27. }