我想在我的应用中播放视频。我环顾四周,但没有任何帮助。我问用户是否想听他的手机音乐。如果单击确定,则音乐继续播放,否则音乐停止。从现在开始没问题。现在,我的问题是:我创建了一个网格来使用它,例如具有宽度和高度等的弹出窗口。当这个弹出窗口出现时,音乐停止。这就是为什么无法在市场上认证我的应用程序的原因。这是一个小代码:我相信很容易理解......请帮助!
public void new_grid(int v)
{
Grid gr = new Grid();
gr.Background = new SolidColorBrush(Colors.Cyan);
gr.Opacity = 1.0;
gr.Width = 400;
gr.Height = 600;
// Create a white border.
Border border = new Border();
border.BorderBrush = new SolidColorBrush(Colors.White);
border.BorderThickness = new Thickness(7.0);
MediaElement video_ship = new MediaElement();
//video_ship.AutoPlay = false;
video_ship.Width = 400;
video_ship.Height = 600;
video_ship.VerticalAlignment = VerticalAlignment.Top;
video_ship.HorizontalAlignment = HorizontalAlignment.Left;
if (v == 1)
{
video_ship.Source = new Uri("videos/Lost_Ship.wmv", UriKind.RelativeOrAbsolute);
//video_ship.Play();
gr.Children.Add(video_ship);
}
else if (v == 2)
{
//video_ship.Source = "videos/Lost_Ship.wmv";
video_ship.Source = new Uri("videos/you_are_on_fire.wmv", UriKind.RelativeOrAbsolute);
//video_ship.Name = "fire";
//video_ship.Play();
gr.Children.Add(video_ship);
}
else if (v == 3)
{
//video_ship.SourceName = "videos/Lost_Ship.wmv";
video_ship.Source = new Uri("videos/EscapeShip.wmv", UriKind.RelativeOrAbsolute);
//video_ship.Name = "escape";
//video_ship.Play();
gr.Children.Add(video_ship);
}
我发送一个变量 v 来选择我的一个视频..我将视频设置为构建动作内容
有什么想法该怎么做?或与此不同的东西?我只想播放视频..视频没有音乐..或音效..