diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-04-13 18:46:26 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-04-13 18:46:26 +0300 |
| commit | 7c7d1078082c261c820297cb6e4e5cf301872e4f (patch) | |
| tree | 0af613cb94be523d197fd89c2dbdcce0859421d3 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels | |
| parent | 23f4bd3bb2f7ff5e0814555efe1c6115f32c49c4 (diff) | |
| download | Tango-7c7d1078082c261c820297cb6e4e5cf301872e4f.tar.gz Tango-7c7d1078082c261c820297cb6e4e5cf301872e4f.zip | |
PPC. Machine Status View changes.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs index 8e5d3e0f9..b41dbb0bf 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs @@ -81,6 +81,17 @@ namespace Tango.PPC.UI.ViewModels set { _isSpoolView = value; RaisePropertyChangedAuto(); } } + private bool _isWeightView; + /// <summary> + /// Gets or sets a value indicating whether this instance is length. Show indicator values in length or weight. + /// </summary> + public bool IsWeghtView + { + get { return _isWeightView; } + set { _isWeightView = value; RaisePropertyChangedAuto(); } + } + + private bool _isDyeingProcess; public bool IsDyeingProcess @@ -191,6 +202,7 @@ namespace Tango.PPC.UI.ViewModels IsJobStatusViewEnable = true; IsEnabledStopButton = false; IsSpoolView = false; + IsWeghtView = false; } #region printing |
