MVVM Light“在缓存中找不到类型”

时间:2014-05-11 10:15:57

标签: c# mvvm-light win-universal-app

我试图将我的Windows Phone 8 Silverlight应用程序转换为8.1手机应用程序,作为通用应用程序的一部分。我不知道这些是否相关,因为这是我第一次尝试正确实现视图模型。我想在Windows和Windows Phone中的视图之间共享数据。 无论如何,这是我得到的错误。

Error   3   Type not found in cache: ScoreAlerts.ViewModel.FixturesViewModel.   C:\Users\Dave\Documents\Visual Studio 2012\Projects\Score Alerts\ScoreAlerts\ScoreAlerts.WindowsPhone\Pages\Fixtures.xaml   9   5   ScoreAlerts.WindowsPhone
Error   4   Type not found in cache: ScoreAlerts.ViewModel.HomePageViewModel.   C:\Users\Dave\Documents\Visual Studio 2012\Projects\Score Alerts\ScoreAlerts\ScoreAlerts.Shared\Pages\HomePage.xaml 34  9   ScoreAlerts.WindowsPhone

这是我的视图模型定位器的外观

public class ViewModelLocator
{
    /// <summary>
    /// Initializes a new instance of the ViewModelLocator class.
    /// </summary>
    public ViewModelLocator()
    {
        if (!ViewModelBase.IsInDesignModeStatic)
        {
            ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default);

            if (ViewModelBase.IsInDesignModeStatic)
            {
                // Create design time view services and models
                //SimpleIoc.Default.Register<IDataService, DesignDataService>();
            }
            else
            {
                // Create run time view services and models
                //SimpleIoc.Default.Register<IDataService, DataService>();
            }

            SimpleIoc.Default.Register<HomePageViewModel>();
            SimpleIoc.Default.Register<FixturesViewModel>();
        }
    }

    [SuppressMessage("Microsoft.Performance",
        "CA1822:MarkMembersAsStatic",
        Justification = "This non-static member is needed for data binding purposes.")]
    public HomePageViewModel Main
    {
        get
        {
            //return ServiceLocator.Current.GetInstance<HomePageViewModel>();
            return SimpleIoc.Default.GetInstance<HomePageViewModel>("default");
        }
    }

    [SuppressMessage("Microsoft.Performance",
        "CA1822:MarkMembersAsStatic",
        Justification = "This non-static member is needed for data binding purposes.")]
    public FixturesViewModel Fixtures
    {
        get
        {
            //return ServiceLocator.Current.GetInstance<FixturesViewModel>();
            return SimpleIoc.Default.GetInstance<FixturesViewModel>("default");
        }
    }

    public static void Cleanup()
    {
        // TODO Clear the ViewModels
    }
}

我的观点XAML有这个

DataContext="{Binding Fixtures, Source={StaticResource Locator}}"

我的应用有这个

<viewModel:ViewModelLocator x:Key="Locator"
                         d:IsDataSource="True"/>

任何想法我做错了什么?

2 个答案:

答案 0 :(得分:13)

答案是一个相当简单的错误。该位未在设计模式下执行

SimpleIoc.Default.Register<HomePageViewModel>();
  

我的SimpleIoc.Default.Register()代码;在一个永远不会在设计模式下执行的if语句中。

答案 1 :(得分:0)

在我的例子中,目标类没有实现无参数构造函数。该类包含的唯一构造函数接受了一个字节类型参数,所以我得到了:

  
    

在缓存中找不到类型:System.Byte

  

我的注册行是这样的:

SimpleIoc.Default.Register<IMyInterface, MyConcreteClass>();

我向MyConcreteClass添加了一个无参数构造函数,然后将[PreferredConstructor]属性应用于它(此属性在GalaSoft.MvvmLight.Ioc命名空间中可用)并解决了问题。

希望这可以帮助有人在路上。