using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core.DI; using Tango.Scripting.IDE.Dialogs; namespace Tango.Scripting.IDE { /// /// This class contains static references to all the view models in the /// application and provides an entry point for the bindings. /// public static class ViewModelLocator { /// /// Initializes a new instance of the ViewModelLocator class. /// static ViewModelLocator() { TangoIOC.Default.Register(); } public static NewProjectDialogVM NewProjectDialogVM { get { return TangoIOC.Default.GetInstance(); } } } }