嗨,我想在我的 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);
}
我尝试了上面的代码,但我只有黑色框。我无法播放你的视频。所以请任何人帮助我。提前谢谢。