aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2021-11-01 14:53:16 +0200
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2021-11-01 14:53:16 +0200
commit20f49c625cd32b95154db138ed7eeebbadd04bf7 (patch)
tree951627b53972a48e77f9c3d11e9de5295e15fa45 /Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs
parentb1049c0822b76939215225a617e143274abe2e8b (diff)
downloadTango-20f49c625cd32b95154db138ed7eeebbadd04bf7.tar.gz
Tango-20f49c625cd32b95154db138ed7eeebbadd04bf7.zip
Color selection and Job sequence package. Redesign list control, move Color Selection View to dialogs, implement save.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs
index 4f357be2c..5298cf096 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModelLocator.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
+using Tango.PPC.Jobs.Dialogs;
using Tango.PPC.Jobs.ViewModels;
namespace Tango.PPC.Jobs
@@ -21,7 +22,7 @@ namespace Tango.PPC.Jobs
TangoIOC.Default.Register<JobViewVM>();
TangoIOC.Default.Register<TwineCatalogViewVM>();
TangoIOC.Default.Register<JobProgressViewVM>();
- TangoIOC.Default.Register<ColorSelectionToolViewVM>();
+ TangoIOC.Default.Register<ColorSelectionViewVM>();
}
/// <summary>
@@ -94,11 +95,11 @@ namespace Tango.PPC.Jobs
/// <summary>
/// Gets the twine catalog view VM.
/// </summary>
- public static ColorSelectionToolViewVM ColorSelectionToolViewVM
+ public static ColorSelectionViewVM ColorSelectionToolViewVM
{
get
{
- return TangoIOC.Default.GetInstance<ColorSelectionToolViewVM>();
+ return TangoIOC.Default.GetInstance<ColorSelectionViewVM>();
}
}
}