在Windows Phone应用程序上使用计时器

时间:2011-12-05 20:14:01

标签: visual-studio-2010 windows-phone-7.1

如何为c#windows phone 7创建计时器? 我已经找到了一个计时器,但它适用于普通的c#,而对于Windows手机的C#,我们不能使用system.Timers!我想在5000毫秒之间播放视频。

这是我的代码:

使用(IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())             {                 IsolatedStorageFileStream isoFileStream = myIsolatedStorage.OpenFile(“xml_file.xml”,FileMode.Open);

            XElement xml = XElement.Load(isoFileStream);

                    foreach (XElement node2 in xml.Element("graphics").Elements("file"))
                    {



                        string url_graficos = node2.Element("fileurl").Value;

                        string[] array = url_graficos.Split('/');
                        string[,] resultadosImage = { { node2.Element("fileurl").Value, node2.Element("playtime").Value, node2.Element("transition").Value } };

                        mediaSound.Play();
                        mediaSound.Stop();

1 个答案:

答案 0 :(得分:3)

您要找的班级是DispatcherTimerHere是一个关于如何使用它的好教程。

希望这会对你有所帮助。