CenterControlInfo.cs 703 B

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