| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- namespace SHJX.Service.Model.ControlModules
- {
- public class RingProcessBarControl : BindableBase
- {
- public int Index { get; set; }
- public string Name { get; set; }
- public string TagCurrentTagNo { get; set; }
- public bool _roundVisiable;
- public bool RoundVisiable
- {
- get => _roundVisiable;
- set => SetProperty(ref _roundVisiable, value);
- }
- public string _currentText;
- public string CurrentText
- {
- get => _currentText;
- set => SetProperty(ref _currentText, value);
- }
- public double _currentCycleValue;
- public double CurrentCycleValue
- {
- get => _currentCycleValue;
- set => SetProperty(ref _currentCycleValue, value);
- }
- public string _centerColor;
- public string CenterColor
- {
- get => _centerColor;
- set => SetProperty(ref _centerColor, value);
- }
- public RingProcessBarControl()
- {
- RoundVisiable = false;
- CurrentText = string.Empty;
- CurrentCycleValue = 0;
- CenterColor = string.Empty;
- }
- }
- }
|