| 1234567891011121314151617181920212223242526272829 |
- namespace SHJX.Service.Model.ControlModules
- {
- public class CenterControlInfo : BindableBase
- {
- public int Index { get; set; }
- public string ControlName { get; set; }
- public string TagNameText { get; set; }
- public string _centerText;
- public string CenterText
- {
- get => _centerText;
- set => SetProperty(ref _centerText, value);
- }
- public string _backColor;
- public string BackColor
- {
- get => _backColor;
- set => SetProperty(ref _backColor, value);
- }
-
- public CenterControlInfo()
- {
- CenterText = string.Empty;
- }
- }
- }
|