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

Reproduction Steps: 1. Create an instance of `GalaSoft.MvvmLight.CommandWpf.RelayCommand` 2. Invoke `Execute()` passing a `DateTime` instance for the parameter. Observed: ``` System.InvalidCastException HResult=0x80004002 Message=Invalid cast from 'System.DateTime' to 'System.Nullable`1[[System.DateTime, mscorlib, Version=4.0.0.0,...

The DialogService-implementation from WPSL81 would also work for NET45 Windows Apps, so why not add it? I personally don't like the Windows MessageBox, but as a quick default, it serves...

This pull request is for issue #60 which includes a change to the referenced NuGet packages for the Xamarin.Android.Support libraries which are required for the MvvmLightAndroidSupport package to provide support...

Recently had this issue with another project and noticed the same issue with the MvvmLightAndroidSupport package. Essentially, it's not possible to install the MvvmLightAndroidSupport package to a project which has...

I've occasionally found a typo while reading documentation.

I have a WPF application that uses MvvmLight. Messages are sent around at various points, and I would like to see (for debugging purposes, not for production code) whenever a...

Hi, I'm using `MvvmLight` for my application. Currently , I'm following `UnitOfWork` design pattern which consists of **generic repositories**. As in ASP.Net Core, I register every repositories using: ``` containerBuilder.AddScoped(typeof(IRepositoryBase),...

Please see https://blogs.msdn.microsoft.com/dotnet/2018/12/10/open-sourcing-xaml-behaviors-for-wpf/ for details.

We are porting some WPF code to Xamarin and at one point we have the following method: `public void RaiseCanExecuteChanged() { foreach (var cmd in _relayCommands) { cmd.RaiseCanExecuteChanged(); } }`...

Hi I have a view model with a `RelayCommand` that is bound to the UI. I am reusing a single instance of that view model that is shared between pages....