0
我需要在觸摸屏幕上播放聲音,它應該保持播放狀態,直到用戶將他的手從屏幕上移開。這裏是我的代碼,在WP7中播放聲音循環
private void OnMouseDown(object sender, Moenter code hereuseButtonEventArgs e)
{
clicked = true;
ColoringSound.Source = new Uri("Sounds/drawing.mp3", UriKind.Relative);
ColoringSound.Play();
}
private void OnMouseUp(object sender, MouseButtonEventArgs e)
{
clicked = false;
}
希望我的回答,[在這篇文章中可能會對您有所幫助。] [1]請檢查一致。 [1]:http://stackoverflow.com/questions/9676183/how-to-play-mp3-file-in-loop-in-wp7 – Santhu 2012-03-13 06:30:56
感謝Santhu但我的應用程序是不是不添加文件像那樣。這是版本的問題嗎? – 2012-03-13 09:11:06