我有一个包含颜色对象作为资源的 UserControl:
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
...
</ResourceDictionary.MergedDictionaries>
<Color x:Key="BackgroundColor">Transparent</Color>
</ResourceDictionary>
</UserControl.Resources>
这个 UserControl 中有一个 Grid 作为根元素,它有一个自定义样式,我想在其中引用上面的颜色资源:
<Grid.Style>
<Style TargetType="Grid">
<Style.Triggers>
<Trigger Property="FrameworkElement.IsMouseOver" Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)">
<SplineColorKeyFrame KeyTime="0:0:0.5" KeySpline="0.15,0.8 0.3,1" Value="LightBlue" />
</ColorAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<!-- Here is the problem -->
<ColorAnimation To="{DynamicResource BackgroundColor}" Duration="0:0:1" Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" />
</Storyboard>
</BeginStoryboard>
</Trigger.ExitActions>
</Trigger>
</Style.Triggers>
</Style>
</Grid.Style>
每次我运行应用程序时,当框架尝试设置样式时,我都会收到 XAML 解析异常。如果我引用BackgroundColor
作为 StaticResource 它工作得很好,但我在某些条件下更改代码中的资源,因此必须动态引用它。
在这种情况下,如何将资源用作动态资源?