■ PlaySoundAction 엘리먼트를 사용하는 방법을 보여준다.
▶ 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 |
<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="PlaySoundAction"> <i:Interaction.Triggers> <i:EventTrigger EventName="Click"> <ei:PlaySoundAction Source="http://127.0.0.1/ibelive.mp3" Volume="1" /> </i:EventTrigger> </i:Interaction.Triggers> </Button> |
※ Volume 속성은 0에서 1 사이의 값을 갖는다.