1

嗨,我想在我的 windows phone 应用程序中播放你的管视频。我是 windows 手机的新手,我没有在我的应用程序中播放视频的经验。请帮助我任何人如何在应用程序中播放你的管视频。

我的代码如下

xml文件

<FullContent>
  <iframe src="http://www.youtube.com/embed/2o-Y0RzSfkE?fs=0" width="500" height="298" frameborder="0" allowfullscreen="false" ></iframe>
</FullContent>

xml 文件

<StackPanel  VerticalAlignment="Top" Height="600" Margin="0,0,0,0">
    <TextBlock x:Name="title" TextWrapping="Wrap"  VerticalAlignment="Top" Height="40"></TextBlock>
    <phone:WebBrowser x:Name="webBrowser" Height="600"  IsScriptEnabled="True" />

xaml.cs 文件

public MainPage()
    {
        InitializeComponent();
        string video = "<iframe src="http://www.youtube.com/embed/2o-Y0RzSfkE?fs=0" width="500" height="298" frameborder="0" allowfullscreen="false" ></iframe>"
        this.Navigate.ToString(video);
    }

我尝试了上面的代码,但我只有黑色框。我无法播放你的视频。所以请任何人帮助我。提前谢谢。

4

2 回答 2

4

You'll want to use the YouTube class that is available in the MyToolkit library for Windows Phone, take a look here...

于 2013-04-29T11:22:17.797 回答
0
web.NavigateToString("<!DOCTYPE html PUBLIC '-//WAPFORUM//DTD XHTML Mobile 3.2//EN' 'http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd'>" +
"<iframe width='320' height='200' src='http://www.youtube.com/embed/" + kk + "' frameborder='0' >'</iframe>");

kk=youtube 视频 ID

于 2014-12-30T09:25:22.407 回答