HtmlWebViewSource personHtmlSource = new HtmlWebViewSource();
personHtmlSource.SetBinding(HtmlWebViewSource.HtmlProperty, "HTMLDesc");
personHtmlSource.Html = @"<html><body> <div style=' position: relative; padding-bottom: 56.25%; padding-top: 25px;'> <iframe style='position: absolute; top: 0; left: 0; width: 100%; height: 100%;' src='https://www.youtube.com/embed/bVdfj7HXuXE' frameborder='0' allowfullscreen></iframe></div> </body></html>";
var browser = new WebView();
browser.Source = personHtmlSource;
Content = browser;
}
即使视频完全播放后,它也会进入youtube屏幕,我可以在其中搜索和观看更多视频...打开应用程序时,只有原始视频没有显示,而且全都是黑屏,十分醒目。请帮助或提供另一种简单的方法来将youtube视频实施到我的应用中。