XAML无法从不同的程序集中找到一个类

时间:2017-06-06 14:55:28

标签: c# wpf xaml

我有一个类ThumbModelPPT,它在不同的程序集中定义,我在XAML中引用如下:

mlns:thumbModel="clr-namespace:MSBusinessLogicPack.ImporterLogic;assembly=MSBusinessLogicPack.ImporterLogic"

然后我将其用作ListView项目的模板:

<ListView.Resources>
       <DataTemplate DataType="{x:Type thumbModel:ThumbModelPPT}">
           ...............
       </DataTemplate>
 </ListView.Resources>

但是,我收到一个编译错误,说无法找到命名空间和模型类,尽管两者都被正确引用。在我将模型类移动到不同的程序集之前,它运行良好。

有什么想法吗?

0 个答案:

没有答案