| 12345678910111213141516171819 |
- namespace SHJX.Service.Model.DiaplayModel
- {
- public class CenterControlElementArg : IElementArg
- {
- public string TagText { 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);
- }
- }
- }
|