我试图创建一个“连接到服务器”窗口。在程序的打开启动画面之后需要显示此窗口。该窗口仅包含MediaElement,在此MediaElement中我需要显示.avi文件。 在Window的.cs文件中,我正在创建套接字,它需要连接到我的服务器并检查更新。 另外,当接受来自服务器的响应时,我不会在启动画面停止显示.avi文件。
我的问题是窗口没有显示.avi文件。当我用mp3文件替换.avi文件(用于测试..)时,它会给我带来相同的结果。
通常,我的代码看起来像这样:
private void Window_Loaded(object sender, RoutedEventArgs e)
{
this.MediaElement.Play();
------------------------------
| Socket's Code Comes Here |
------------------------------
if (this.IsUpdateNeeded == true) //IsUpdateNeeded == My Own Variable..
{
MessageBox.Show("New Version Is Here !", "New Version Is Here !", MessageBoxButtons.OK, .MessageBoxIcon.Information);
GoToWebsite();
}
else
{
MessageBox.Show("You Own The Latest Version", "No Update Is Needed", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
this.MediaElement.Stop();
this.Close();
}
有人可以帮我解决一下吗?
答案 0 :(得分:1)
在另一个线程中运行的代码(因此不会阻止主UI线程并停止播放视频)
private void Window_Loaded(object sender, RoutedEventArgs e)
{
this.MediaElement.Play();
Task.Factory.StartNew(
new Action(delegate()
{
/*
* ------------------------------
Socket's Code Comes Here |
------------------------------
*/
Dispatcher.Invoke(
new Action(delegate()
{
if (this.IsUpdateNeeded == true) //IsUpdateNeeded == My Own Variable..
{
MessageBox.Show("New Version Is Here !", "New Version Is Here !", MessageBoxButton.OK, MessageBoxImage.Information);
GoToWebsite();
}
else
{
MessageBox.Show("You Own The Latest Version", "No Update Is Needed", MessageBoxButton.OK, MessageBoxImage.Information);
}
this.MediaElement.Stop();
this.Close();
}
));
}
)
);
}