| 123456789101112131415161718192021222324252627282930 |
- namespace SHJX.Service.Model.ControlModules
- {
- public class StatusControlInfo : BindableBase
- {
- public int Index { get; set; }
- public string ControlName { get; set; }
- public string TagNameText { get; set; }
- public string _currentTextText;
- public string CurrentTextText
- {
- get => _currentTextText;
- set => SetProperty(ref _currentTextText, value);
- }
- public string _backColor;
- public string BackColor
- {
- get => _backColor;
- set => SetProperty(ref _backColor, value);
- }
-
- public StatusControlInfo()
- {
- CurrentTextText = "32423424";
- TagNameText = "32423424";
- }
- }
- }
|