Path not found
Content-Type: text/html; charset=UTF-8 Last-Modified: Fri, 10 Jul 2026 01:54:24 GMT Expires: Thu, 01 Jan 1970 00:00:05 GMT
![]() |
index : Tango | |
| Twine softwares | Thomas Vanbesien |
| aboutsummaryrefslogtreecommitdiffstats |
using Tango.Core.DI;
using Tango.MachineStudio.DataCapture.ViewModels;
using Tango.MachineStudio.DataCapture.Views;
namespace Tango.MachineStudio.DataCapture
{
/// <summary>
/// This class contains static references to all the view models in the
/// application and provides an entry point for the bindings.
/// </summary>
public static class ViewModelLocator
{
/// <summary>
/// Initializes a new instance of the ViewModelLocator class.
/// </summary>
static ViewModelLocator()
{
TangoIOC.Default.Register<MainViewVM>();
}
public static MainViewVM MainViewVM
{
get
{
return TangoIOC.Default.GetInstance<MainViewVM>();
}
}
}
}