Exemple #1
0
 private void CzasO_DragStarted(object sender, System.Windows.Controls.Primitives.DragStartedEventArgs e)
 {
     Klip.Pause();
     if (timer != null)
     {
         timer.Stop();
     }
 }
Exemple #2
0
 private void KlipPause(object sender, RoutedEventArgs e)
 {
     // if Klip.IsMuted  Klip.Pause()
     if (KlipIsPlaying)
     {
         Klip.Pause();
         KlipIsPlaying      = false;
         PlayButton.Content = " Wznów ";
     }
     else
     {
         KlipPlay(sender, e);
         PlayButton.Content = " Pauza    ";
     }
 }