aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Android_Studio/ColorCaptureTest/app/src/main/jniLibs/x86/libopencv_core.a
stat options
Period:
Authors:

Commits per author per week (path 'Software/Android_Studio/ColorCaptureTest/app/src/main/jniLibs/x86/libopencv_core.a')

AuthorW26 2026W27 2026W28 2026W29 2026Total
Total00000
using Tango.Core.DI;
using Tango.MachineStudio.RML.ViewModels;
using Tango.MachineStudio.RML.Views;

namespace Tango.MachineStudio.RML
{
    /// <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>();
            }
        }
    }
}