I tried to use MVVMLight in our Windows 10 Universal app, but it seems like that it totally can't work. I've seen this blog
Nuget downloaded and added a reference to the MVVM Light assemblies
Nuget also added the ViewModelLocator in the Application.Resources.
Can't see the Locator in Application.Resources
You need to create the ViewModelLocator manually, please follow these steps:
In MainViewModel.cs:
In ViewModelLocator.cs:
In App.xaml:
In the View, set DataContext as below:
Now, you can set binding to VM, for example:
Enjoy it:)