0

我有一堆与视图模型相关联的视图,并且所有视图和视图模型都出现类似的错误。这是代码:

我有以下代码:

    public static IReportViewModel GetViewModel(Type view)
    {
        try
        {
            return s_Locator.GetInstance(view, view.FullName) as IReportViewModel; <!-- I get the exception here-->
        }
        catch (Exception e)
        {
            MessageBox.Show(e.Message);
        }             
    }

完整的例外在这里:

尝试获取 AnnotetedReportViewModel 类型的实例时发生激活错误,键“InsurableRisk.Reporting.ViewModels.Application.AnnotetedReportViewModel”

谁能解释或建议可能导致异常的原因?

问候, 萨加尔

4

1 回答 1

1

拼写是否正确?我注意到 Annotated 拼写为 AnnotetedReportViewModel。另外,程序集是加载到项目中还是存在于 bin 文件夹中?

于 2013-06-19T18:40:30.957 回答