■ ChangePropertyAction 엘리먼트를 사용하는 방법을 보여준다.
▶ 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 |
<Button x:Name="button" xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" Width="140" Height="100" Content="ChangeProperty"> <i:Interaction.Triggers> <i:EventTrigger EventName="Click"> <ei:ChangePropertyAction TargetName="rectangle" PropertyName="Width" Value="120" /> ... </i:EventTrigger> </i:Interaction.Triggers> </Button> |