私は WPF を初めて使用し、エラーを解決しようとしています。独自のコントロール オブジェクトを作成できるカスタム コントロール ライブラリを構築しようとしています。[ファイル] > [新しいプロジェクト] > [WPF カスタム コントロール ライブラリ] > [名前を入力] > [保存] に移動すると、インスタント エラー:
The name "CustomControl1" does not exist in the namespace "clr-namespace:ProjectName"
コードを編集しませんでしたが、すぐにエラーが発生しました。参考までに、エラーは Generic.xaml 内にあります。
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ProjectName">
<Style TargetType="{x:Type local:CustomControl1}"> //<--Fails here
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl1}"> // Fails here as well
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
Visual Studio 12 と .NET 4 を使用しています。