找不到类型工具包:BusyIndi​​cator

时间:2011-06-17 14:15:29

标签: wpf visual-studio-2010 xaml wpftoolkit busyindicator

我正在开发一个WPF项目,其UserControl的开头定义为:

<UserControl x:Class=""
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:converters="clr-namespace:.Modules.Converters"
         xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit/extended"
         mc:Ignorable="d">

在用户控件中我有这个:

<toolkit:BusyIndicator IsBusy="{Binding IsBusy}" BusyContent="Please wait...">

我的项目中引用了WPFToolkit.Extended,并且该引用似乎有效(没有红色下划线)。

然而,我收到此错误并且不知道原因:

找不到类型'toolkit:BusyIndi​​cator'。验证您是否缺少程序集引用,并且已构建所有引用的程序集。

有什么想法吗?

1 个答案:

答案 0 :(得分:12)

导航到包含DLL的文件夹。右键单击DLL并选择属性。在底部附近的常规选项卡下,单击“取消阻止”按钮。你应该好好去。