/// <summary> Поставить воспроизведение режима со звуком на паузу. </summary> private void Pause(object sender, MouseButtonEventArgs e) { if (IsPauseEnable = !IsPauseEnable) { PauseButton.Background = (SolidColorBrush)Resources["Main.Color.Red"]; } else { PauseButton.ClearValue(TextBlock.BackgroundProperty); } Control.DescriptionStep(); }