私は次のように定義された UserControl の先頭を使用して WPF プロジェクトに取り組んでいます。
<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:BusyIndicator」が見つかりませんでした。アセンブリ参照が欠落していないこと、および参照されているすべてのアセンブリがビルドされていることを確認してください。
何か案は?