コード例 #1
0
 private void StopButton_Click(object sender, RoutedEventArgs e)
 {
     if (MyME.CanPause)
     {
         MyME.Stop();
     }
 }
コード例 #2
0
 private void MyME_MediaEnded(object sender, RoutedEventArgs e)
 {
     MyME.Position = new TimeSpan(0, 0, 1);
     MyME.Play();
 }
コード例 #3
0
 private void PlayButton_Click(object sender, RoutedEventArgs e)
 {
     MyME.Play();
 }