我的用户控件具有以下 DP:
public static readonly DependencyProperty ButtonAnimationColorProperty =
DependencyProperty.Register("ButtonAnimationColor", typeof(Color), typeof(MyControl),
new FrameworkPropertyMetadata(Colors.RoyalBlue, FrameworkPropertyMetadataOptions.AffectsRender, ThemeUpdate));
public Color ButtonAnimationColor
{
get { return (Color)GetValue(ButtonAnimationColorProperty ); }
set { SetValue(ButtonAnimationColorProperty , value); }
}
此控件编译为一个 dll,我在其他解决方案中使用。当我直接设置时,它运行良好:
<ns:MyControl ButtonAnimationColor="Green" />
当我尝试使用样式设置器设置此 DP 时,会出现此问题,如下所示:
<ns:MyControl>
<ns:MyControl.Style>
<Style>
<Setter Property="ButtonAnimationColor" Value="Green" />
</Style>
</ns:MyControl.Style>
</ns:MyControl>
它给了我以下错误:
成员"ButtoAnimationColor"无法识别或无法访问。
我需要在代码中进行哪些更改才能像这样设置属性?
尝试设置样式的目标类型:
<ns:MyControl.Style>
<Style TargetType="{x:Type ns:MyControl}">
<Setter Property="ButtonAnimationColor" Value="Green" />
</Style>
</ns:MyControl.Style>