private void CzasO_DragStarted(object sender, System.Windows.Controls.Primitives.DragStartedEventArgs e) { Klip.Pause(); if (timer != null) { timer.Stop(); } }
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 "; } }