in file App.xaml.cs, in method GetInstance add the following lines
protected override object GetInstance(Type service, string key)
{
if (service == null && !string.IsNullOrWhiteSpace(key))
{
service = Type.GetType(key);
key = null;
}
// the rest of method
}