在下面的代码中
<y:base x:Name="baseclass" x:Key="basetest"/>这一行提示错误,例如“无法创建'base'的实例”。
base.vb
Imports Tool2DLL
Public Class base
Inherits WpfBaseToolBar
End Class
在上面的代码中,Tool2DLL是我们创建的dll,而wpfbasetoolbar是DLL中的类
MainWindow.xaml
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:y="clr-namespace:WpfApplication1"
xmlns:y1="clr-namespace:Tool2DLL;assembly=WpfControlLibrary1"
Height="350" Width="525">
<Window.Resources>
<y:base x:Name="baseclass" x:Key="basetest"/>
</Window.Resources>
<Grid>
</Grid>
</Window>
如何解决错误。任何想法都是适合的
谢谢&amp;问候 JAI