Using MediaElement for Audio : MediaElement « Windows Presentation Foundation « C# / C Sharp






Using MediaElement for Audio

Using MediaElement for Audio
   

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <MediaElement x:Name="audio"/>
  <Button>A Button With Sounds
    <Button.Triggers>
      <EventTrigger RoutedEvent="Button.Click">
        <EventTrigger.Actions>
          <BeginStoryboard>
            <Storyboard>
              <MediaTimeline Source="click.wav" Storyboard.TargetName="audio"/>
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger.Actions>
      </EventTrigger>
      <EventTrigger RoutedEvent="Button.MouseEnter">
        <EventTrigger.Actions>
          <BeginStoryboard>
            <Storyboard>
              <MediaTimeline Source="hover.wav" Storyboard.TargetName="audio"/>
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger.Actions>
      </EventTrigger>
    </Button.Triggers>
  </Button>
</Canvas>

   
    
    
  








Related examples in the same category

1.Overlapping Videos with EffectsOverlapping Videos with Effects
2.Simple Media PlayerSimple Media Player
3.Play mp3 filePlay mp3 file
4.Play wav filePlay wav file
5.Declarative PlaybackDeclarative Playback
6.Play a Media FilePlay a Media File
7.Sound And Video Playback in CodeSound And Video Playback in Code
8.Play with MediaPlayerPlay with MediaPlayer
9.Play Audio AsynchronouslyPlay Audio Asynchronously
10.Play System SoundsPlay System Sounds