Click here to Skip to main content
15,884,472 members
Articles / Mobile Apps

Resume the User’s Music after MediaPlay

Rate me:
Please Sign up or sign in to vote.
4.96/5 (16 votes)
8 Nov 2010Ms-PL6 min read 47.9K   882   14  
How to Resume the User's music after we played a video or audio from our Silverlight/XNA WP7 Application.
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Threading;
using Microsoft.Xna.Framework;

namespace ResumeMusicPlayTest
{
    public class XNAAsyncDispatcher : IApplicationService
    {
        private DispatcherTimer _frameworkDispatcherTimer;
        public XNAAsyncDispatcher(TimeSpan dispatchInterval)
        {
            FrameworkDispatcher.Update();
            this._frameworkDispatcherTimer = new DispatcherTimer();
            this._frameworkDispatcherTimer.Tick += new EventHandler(frameworkDispatcherTimer_Tick);
            this._frameworkDispatcherTimer.Interval = dispatchInterval;
        }
        void IApplicationService.StartService(ApplicationServiceContext context)
        {
            this._frameworkDispatcherTimer.Start();
        }

        void IApplicationService.StopService()
        {
            this._frameworkDispatcherTimer.Stop();
        }

        void frameworkDispatcherTimer_Tick(object sender, EventArgs e)
        {
            FrameworkDispatcher.Update();
        }
    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer
Hungary Hungary
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions