我创建了一个扩展,它采用颜色值并按指定量修改 HSL 值。这是扩展的相关部分。
[MarkupExtensionReturnType(typeof(Color))]
internal class RelativeColor : MarkupExtension
{
public Color BaseColor { get; set; }
public float H { get; set; }
public float S { get; set; }
public float L { get; set; }
public override object ProvideValue(IServiceProvider serviceProvider)
{
ColorHSL c = RGBtoHSL(BaseColor);
c.H *= H == 0f ? 1f : H;
c.L *= L == 0f ? 1f : L;
c.S *= S == 0f ? 1f : S;
return HSLtoRGB(c); //Returns Color object
}
// Additional methods that converts between HSL and RGB
}
这是我放入 App.xaml 的 XAML
<Style.Resources>
<Extensions:RelativeColor x:Key="ButtonBackgroundColor" BaseColor="{StaticResource WorkspaceBackground}" L="1.18"/>
<SolidColorBrush x:Key="ButtonBackground" Color="{StaticResource ButtonBackgroundColor}"/>
<SolidColorBrush x:Key="ButtonBorder" Color="{StaticResource ButtonBackgroundColor}" />
<SolidColorBrush x:Key="ButtonHoverBorder" Color="#B2B2B2" />
</Style.Resources>
现在,在运行时一切都很好,没有错误。但是,在设计期间,XAML 编辑器会引发此错误:
Error 1 An object of the type "X.Extensions.RelativeColor" cannot be applied to a property that expects the type "System.Windows.Media.Color". c:\...\app.xaml 18 62
这指向 xaml 中的前两个 SolidColorBrush 行。关于如何解决这个问题并让设计师正确更新预览的任何想法?