public void Resume() { lock (sound) { sound.Resume(); RefreshPlaybackState(); } }
public void Resume() { lock (sound) { if (sound.CurrentSubSoundIndex != -1 && sound.CurrentSubSound != null) { sound.CurrentSubSound.Resume(); } else { sound.Resume(); } RefreshPlaybackState(); } }