StatusControlInfo.cs 763 B

123456789101112131415161718192021222324252627282930
  1. namespace SHJX.Service.Model.ControlModules
  2. {
  3. public class StatusControlInfo : BindableBase
  4. {
  5. public int Index { get; set; }
  6. public string ControlName { get; set; }
  7. public string TagNameText { get; set; }
  8. public string _currentTextText;
  9. public string CurrentTextText
  10. {
  11. get => _currentTextText;
  12. set => SetProperty(ref _currentTextText, value);
  13. }
  14. public string _backColor;
  15. public string BackColor
  16. {
  17. get => _backColor;
  18. set => SetProperty(ref _backColor, value);
  19. }
  20. public StatusControlInfo()
  21. {
  22. CurrentTextText = "32423424";
  23. TagNameText = "32423424";
  24. }
  25. }
  26. }