k">usingTango.MachineStudio.Logging.Navigation;usingTango.MachineStudio.Logging.ViewModels;namespaceTango.MachineStudio.Logging{/// <summary>/// This class contains static references to all the view models in the/// application and provides an entry point for the bindings./// </summary>publicstaticclassViewModelLocator{/// <summary>/// Initializes a new instance of the ViewModelLocator class./// </summary>staticViewModelLocator(){TangoIOC.Default.Register<EventsViewVM>();TangoIOC.Default.Register<ApplicationLogsViewVM>();TangoIOC.Default.Register<EmbeddedLogsViewVM>();TangoIOC.Default.Register<HomeViewVM>();TangoIOC.Default.Unregister<LoggingNavigationManager>();TangoIOC.Default.Register<LoggingNavigationManager>(newLoggingNavigationManager());}publicstaticEventsViewVMEventsViewVM{get{returnTangoIOC.Default.GetInstance<EventsViewVM>();}}publicstaticApplicationLogsViewVMApplicationLogsViewVM{get{returnTangoIOC.Default.GetInstance<ApplicationLogsViewVM>();}}publicstaticEmbeddedLogsViewVMEmbeddedLogsViewVM{get{returnTangoIOC.Default.GetInstance<EmbeddedLogsViewVM>();}}publicstaticHomeViewVMHomeViewVM{get{returnTangoIOC.Default.GetInstance<HomeViewVM>();}}}}