■ ControlStoryboardAction 엘리먼트를 사용하는 방법을 보여준다.
▶ Expression Blend 참조 추가
1 2 3 4 5 |
Microsoft.Expression.Interactions Microsoft.Expression.Prototyping.Interactivity System.Windows.Interactivity |
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<Grid xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"> <Grid.Resources> <Storyboard x:Key="StoryboardKey"> <DoubleAnimation Storyboard.TargetName="rectangle" Storyboard.TargetProperty="Width" Duration="0:0:0.2" To="200" /> </Storyboard> </Grid.Resources> <Button Width="140" Height="100" Content="ControlStoryboard"> <i:Interaction.Triggers> <i:EventTrigger EventName="Click"> <ei:ControlStoryboardAction ControlStoryboardOption="Play" Storyboard="{StaticResource StoryboardKey}" /> </i:EventTrigger> </i:Interaction.Triggers> </Button> </Grid> |