WPF:如何在XAML中将UI元素的背景属性设置为null / nothing / default?

时间:2009-11-07 00:19:48

标签: wpf xaml background storyboard

使用代码,我可以将UI元素的背景属性设置为其默认值,方法是将其设置为nothing,即

myControl.Background = Nothing

但是我如何在XAML中执行此操作?特别是,我在故事板中这样做:

<Storyboard>
    <ColorAnimation 
        Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" 
        Duration="00:00:02.00" 
        To="DEFAULT_COLOR_HERE" />
</Storyboard>

1 个答案:

答案 0 :(得分:2)

试一试

<Storyboard>
    <ColorAnimation 
        Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" 
        Duration="00:00:02.00" 
        To="{x:Null}" />
</Storyboard>