vote up 0 vote down star

In code, I can set a UI element's background property to its default value by setting it to nothing/null, i.e.

myControl.Background = Nothing

But how do I do this in XAML? In particular, I'm doing this in a Storyboard:

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

Thanks in advanced.

flag

1 Answer

vote up 1 vote down check

Give this a shot

<Storyboard>
    <ColorAnimation 
        Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)" 
        Duration="00:00:02.00" 
        To="{x:Null}" />
</Storyboard>
link|flag
Awesome, that works. Thanks. Related question, how does one do this in a key frame? It doesn't like {x:Null} there. e.g. <LinearColorKeyFrame Value="DEFAULT_COLOR_HERE" KeyTime="0:0:2" /> – sparks Nov 7 at 0:50
I've posted the key frame problem as a new question: stackoverflow.com/questions/1691560 – sparks Nov 7 at 1:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.