我有一个类ThumbModelPPT
,它在不同的程序集中定义,我在XAML中引用如下:
mlns:thumbModel="clr-namespace:MSBusinessLogicPack.ImporterLogic;assembly=MSBusinessLogicPack.ImporterLogic"
然后我将其用作ListView项目的模板:
<ListView.Resources>
<DataTemplate DataType="{x:Type thumbModel:ThumbModelPPT}">
...............
</DataTemplate>
</ListView.Resources>
但是,我收到一个编译错误,说无法找到命名空间和模型类,尽管两者都被正确引用。在我将模型类移动到不同的程序集之前,它运行良好。
有什么想法吗?