こんにちは、Windows Phone アプリで You Tube ビデオを再生したいです。Windows Phone を初めて使用するので、アプリケーションでビデオを再生した経験がありません。
私のコードは以下のとおりです
xml ファイル
<FullContent>
<iframe src="http://www.youtube.com/embed/2o-Y0RzSfkE?fs=0" width="500" height="298" frameborder="0" allowfullscreen="false" ></iframe>
</FullContent>
xaml ファイル
<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);
}
上記のコードを試してみましたが、黒いカラー ボックスしか表示されませんでした。You Tube ビデオを再生できません。誰か助けてください。よろしくお願いします。