在WPF项目中,我尝试使用.dll中定义的Control
。
使用Visual Studio在设计时正确绘制控件。 但是,当我尝试构建项目时,我将得到以下错误:
Type 'xxx' is not defined
我的项目和.dll都针对.NET Framework 4.5。
如何在设计时正确绘制控件但是无法构建它?
编辑:
将命名空间导入XAML:
xmlns:myControls="clr-namespace:MyControl.Controls;assembly=MyControl"
xmlns:myControl="clr-namespace:MyControl;assembly=MyControl"
实际控制(无法构建)
<myControls:MyControl/>
引用的dll属性:
构建时,Visual Studio会出错:
Type 'MyControl.Controls.MyControl' is not defined.
错误指向MainWindow.xaml和MainWindow.g.i.vb。