diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-31 19:39:18 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-31 19:39:18 +0200 |
| commit | 62a1005488e04d8db62be5ef252328d34e1aec0f (patch) | |
| tree | 5e7bb6b2d706b13f04e822b79512785dd1555b0e /Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs | |
| parent | fcbc4e2fad831e0e9bc972df86d155311f9f83a4 (diff) | |
| download | Tango-62a1005488e04d8db62be5ef252328d34e1aec0f.tar.gz Tango-62a1005488e04d8db62be5ef252328d34e1aec0f.zip | |
Added FormulaCalculatorBase.
Added Indexing for JOBS and SEGMENTS tables.
Started working on "Running Job"...
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs b/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs index 1b4dd59cd..337b903b8 100644 --- a/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs +++ b/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs @@ -8,21 +8,21 @@ namespace Tango.Integration.Observables { public partial class ProcessParametersTable { - public event EventHandler DyeingSpeedChanged; + public event EventHandler DyeingSpeedMinInkUptakeChanged; protected override void RaisePropertyChanged(string propName) { base.RaisePropertyChanged(propName); - if (propName == nameof(DyeingSpeed)) + if (propName == nameof(DyeingSpeed) || propName == nameof(MinInkUptake)) { - OnDyeingSpeedChanged(); + OnDyeingSpeedMinInkUptakeChanged(); } } - protected virtual void OnDyeingSpeedChanged() + protected virtual void OnDyeingSpeedMinInkUptakeChanged() { - DyeingSpeedChanged?.Invoke(this, new EventArgs()); + DyeingSpeedMinInkUptakeChanged?.Invoke(this, new EventArgs()); } } } |
