ResourceDictionary
WPF UserControl Library プロジェクト内に作成しようとしています。次のスタイルを追加すると:
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="{StaticResource ResourceKey=GreyBrush}"/>
<Setter Property="BorderBrush" Value="{StaticResource ResourceKey=LightBlueBrush}"/>
<Setter Property="BorderThickness" Value="1"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource ResourceKey=OrangeBrush}"/>
</Trigger>
<EventTrigger RoutedEvent="Click">
<BeginStoryboard>
<Storyboard>
<ColorAnimation Storyboard.TargetProperty="Background.Color" To="{StaticResource ResourceKey=LightOrange}" Duration="0:0:.1"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Style.Triggers>
</Style>
次のようなエラーが表示されます。
The type 'x:Type' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
x を次のように宣言しています。
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
これは、WPF アプリケーション プロジェクト内でリソース ディクショナリを作成すると機能しますが、UserControl ライブラリ プロジェクト内では機能しません。理由はありますか?