aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-15 17:56:37 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-15 17:56:37 +0200
commit73368810c9f0e426d66bf88d8b36c3225a51a217 (patch)
tree30ca98a6b56b78cda99ed7516581e4dc2f8bed7d /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs
parent86b1bde405607c79d3ce252d7386bbb226d03ba5 (diff)
downloadTango-73368810c9f0e426d66bf88d8b36c3225a51a217.tar.gz
Tango-73368810c9f0e426d66bf88d8b36c3225a51a217.zip
BTSR RML Section + Drop Downs.
BTSR Machine Operator Mapping. BTSR Job Outline. BTSR Spool Tension on RMLS_SPOOLS. Added BTSR Tension Error to RML.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs
index cadd1fb95..b3e020c85 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/MainViewVM.cs
@@ -108,6 +108,20 @@ namespace Tango.MachineStudio.RML.ViewModels
set { _spoolTypes = value; RaisePropertyChangedAuto(); }
}
+ private ObservableCollection<BtsrApplicationType> _btsrApplicationTypes;
+ public ObservableCollection<BtsrApplicationType> BtsrApplicationTypes
+ {
+ get { return _btsrApplicationTypes; }
+ set { _btsrApplicationTypes = value; RaisePropertyChangedAuto(); }
+ }
+
+ private ObservableCollection<BtsrYarnType> _btsrYarnTypes;
+ public ObservableCollection<BtsrYarnType> BtsrYarnTypes
+ {
+ get { return _btsrYarnTypes; }
+ set { _btsrYarnTypes = value; RaisePropertyChangedAuto(); }
+ }
+
private Rml _selectedRML;
public Rml SelectedRML
{
@@ -486,6 +500,8 @@ namespace Tango.MachineStudio.RML.ViewModels
FiberShapes = _active_context.FiberShapes.ToObservableCollection();
FiberSynths = _active_context.FiberSynths.ToObservableCollection();
SpoolTypes = _active_context.SpoolTypes.ToObservableCollection();
+ BtsrApplicationTypes = _active_context.BtsrApplicationTypes.ToObservableCollection();
+ BtsrYarnTypes = _active_context.BtsrYarnTypes.ToObservableCollection();
}
private async void AddNewRml()