From 73368810c9f0e426d66bf88d8b36c3225a51a217 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Mon, 15 Feb 2021 17:56:37 +0200 Subject: BTSR RML Section + Drop Downs. BTSR Machine Operator Mapping. BTSR Job Outline. BTSR Spool Tension on RMLS_SPOOLS. Added BTSR Tension Error to RML. --- .../Tango.MachineStudio.RML/ViewModels/MainViewVM.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels') 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 _btsrApplicationTypes; + public ObservableCollection BtsrApplicationTypes + { + get { return _btsrApplicationTypes; } + set { _btsrApplicationTypes = value; RaisePropertyChangedAuto(); } + } + + private ObservableCollection _btsrYarnTypes; + public ObservableCollection 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() -- cgit v1.3.1