vote up 0 vote down star

I would like to know if there is a way to use only XAML to perform an animation on a property, and then on the next click perform the reverse animation?

Here is a sample of the Trigger I have on a Border object to give the appearance of sliding out:

<!-- Animates the Width to Slide It Out. -->
<EventTrigger RoutedEvent="Border.MouseLeftButtonUp">
  <BeginStoryboard>
     <Storyboard>
        <DoubleAnimation Storyboard.TargetName="theFilterControl"
             Storyboard.TargetProperty="Width"
             From="16"
             To="170"
             Duration="0:0:.7" />
      </Storyboard>
    </BeginStoryboard>
 </EventTrigger>
flag

1 Answer

vote up 1 vote down check

You can create a ControlTemplate for a ToggleButton and put border in it. And Button ControlTemplate can give you IsPressed property for the animation.

<ToggleButton>
	<ToggleButton.Template>
		<ControlTemplate  TargetType="{x:Type ToggleButton}">
			<Border x:Name="theFilterControl" Background="#FF686868" 
				BorderBrush="Black" Width="16" />
			<ControlTemplate.Triggers>
				<EventTrigger RoutedEvent="ToggleButton.Checked">
					<BeginStoryboard> 
					<Storyboard>
						  <DoubleAnimation Storyboard.TargetName="theFilterControl"
					             Storyboard.TargetProperty="Width"
					             From="16"
					             To="170"
					             Duration="0:0:.7" />
					</Storyboard>
					</BeginStoryboard>
				</EventTrigger>
				<EventTrigger RoutedEvent="ToggleButton.Unchecked">
					<BeginStoryboard>
						<Storyboard>
						  <DoubleAnimation Storyboard.TargetName="theFilterControl"
					             Storyboard.TargetProperty="Width"
					             From="170"
					             To="16"
					             Duration="0:0:.7" />
						  </Storyboard>
					</BeginStoryboard>
				</EventTrigger>
			</ControlTemplate.Triggers>
		</ControlTemplate>
	</ToggleButton.Template>
</ToggleButton>
link|flag
This sounds like it would work, I have limited knowledge here though. Can you provide a snippet of Xaml to show how to put activate the above storyboard on an element using this trigger? Thank You. – Jason Stevenson Jul 14 at 18:48
Just updated the post with a ToggleButton and ControlTemplate. – Jobi Joy Jul 14 at 19:21
Thank you. I initially had trouble with the dreaded, 'xxx' name cannot be found in the name scope of 'yyyy' error. But then I rearranged my xaml putting everything into the template. Thank you so very much! – Jason Stevenson Jul 14 at 21:34

Your Answer

Get an OpenID
or

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