如何为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();