I've got two problems. I have a WPF UserControl that is a .dll plugin to another WPF application.
The first is, unless I install MVVMLight in the WPF application that is using my Usercontrol dll, it complains it can't find any MVVMLight libraries. Is there anyway I don't have to install MVVMLight on the Main WPF application using my UserControl dll?
Second is, it can't find the ViewModelLocator in my UserControl. I've tried making it a StaticResource of my UserControl but it can't find the ViewModelLocator.
Please help.
Here is an example on how to use a View Model Locator:
Start with a simple
ViewModel
:Define the
ViewModelLocator
:As you see, your ViewModel's instance is created only once in the static constructor, and after that, the same instance is returned.
And here is the
View
:Set the Locator as a
Resource
and use it as theDataContext
of your main container which in this case is aGrid
.