From 7c7d1078082c261c820297cb6e4e5cf301872e4f Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 13 Apr 2023 18:46:26 +0300 Subject: PPC. Machine Status View changes. --- .../PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs') 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; + /// + /// Gets or sets a value indicating whether this instance is length. Show indicator values in length or weight. + /// + 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 -- cgit v1.3.1