■ MediaElement 엘리먼트의 CurrentStateChanged 이벤트를 사용하는 방법을 보여준다.
▶ 예제 코드 (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 28 29 30 31 32 33 34 35 36 37 |
<Grid Width="600" Height="450"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <MediaElement Name="mediaElement" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" IsMuted="False" Volume="1" CurrentStateChanged="mediaElement_CurrentStateChanged" Source="http://texture2d.iptime.org:8864/butterfly.wmv" /> <Button Grid.Row="1" Grid.Column="0" Content="Stop" Click="stopButton_Click" /> <Button Grid.Row="1" Grid.Column="1" Content="Pause" Click="pauseButton_Click" /> <Button Grid.Row="1" Grid.Column="2" Content="Play" Click="playButton_Click" /> <TextBlock Grid.Row="2" Grid.Column="0" Margin="10" FontSize="12" Text="CurrentState : " /> <TextBlock Name="statusTextBlock" Grid.Row="2" Grid.Column="1" Margin="0 10 0 0" FontSize="12" /> </Grid> |
▶ 예제 코드 (C#)
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
using System; using System.Windows; #region 미디어 엘리먼트 현재 상태 변경시 처리하기 - mediaElement_CurrentStateChanged(sender, e) /// <summary> /// 미디어 엘리먼트 현재 상태 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void mediaElement_CurrentStateChanged(object sender, EventArgs e) { this.statusTextBlock.Text = this.mediaElement.CurrentState.ToString(); } #endregion #region Stop 버튼 클릭시 처리하기 - stopButton_Click(sender, e) /// <summary> /// Stop 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void stopButton_Click(object sender, RoutedEventArgs e) { this.mediaElement.Stop(); } #endregion #region Pause 버튼 클릭시 처리하기 - pauseButton_Click(sender, e) /// <summary> /// Pause 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void pauseButton_Click(object sender, RoutedEventArgs e) { this.mediaElement.Pause(); } #endregion #region Play 버튼 클릭시 처리하기 - playButton_Click(sender, e) /// <summary> /// Play 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void playButton_Click(object sender, RoutedEventArgs e) { this.mediaElement.Play(); } #endregion |