mvvmlight icon indicating copy to clipboard operation
mvvmlight copied to clipboard

The main purpose of the toolkit is to accelerate the creation and development of MVVM applications in Xamarin.Android, Xamarin.iOS, Xamarin.Forms, Windows 10 UWP, Windows Presentation Foundation (WPF)...

Results 74 mvvmlight issues
Sort by recently updated
recently updated
newest added

Having an issue with Messanenger. Registering an event like Messenger.Default.Register(this, e => Dispatcher.Invoke(Close)) in a child class of System.Windows.Window, and sending the event from a view model class of the...

When targeting .NET 4.5 or later, adding MVVM Light to my WPF project injects a large number of system assemblies to the application folder upon installation. Here's how to produce...

I am extending a debugger and I need to open mutliple source code editor instances in external windows. Furthermore, correct disposal is an absolute necessity. However, the following line causes...

I get types and interface in the Assembly, so I can't use ``` SimpleIoc.Default.Register(); ``` can we add the method ? ``` SimpleIoc.Default.Register(typeInterface, type); ``` ( pulled by nuget )

**Versions:** MvvmLightLibs 5.3.0, .NET Framework 4.6.1 This is a WPF App using .NET. **The Issue** We use a dispatcher on async methods to change a property's value and have it...

Hello, currently I've seen that GetInstanceWithoutCaching of SimpleIoc returns the same instance like GetInstance in some circumstances. I think GetInstanceWithoutCaching could always return a fresh instance regardless GetInstance was called...

Hi, In our .NET Standard core project, that's referenced by the platform specific projects we want to implement observation between the model and the view model. We made our model...

I was wondering if you had any techniques for using a custom instance of the messenger in the code behind of a view. I would rather create my own instance...

In my scenario, I want to inject an instance into a constructor as a parameter based on a key. Is this something that the SimpleIoc could support, or should I...

Hi, In our Xamarin app we have a "Core" .NET Standard that reference the `MvvmLightLibsStd10` package. However, in our Android app, since we use `MvvmLightAndroidSupport` we are forced to reference...