我想在 Windows 8 应用程序中显示来自 Vimeo 的视频。我在 C#/XAML 中开发了一个应用程序,并希望在 iframe 中嵌入视频(通过 WebView 控件)。
这是我的代码:
string EmbedCode = "<iframe src=\"http://player.vimeo.com/video/33713088?title=0&byline=0&portrait=0\" width=\"640\" height=\"360\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen>";
MyWebView.NavigateToString(EmbedCode);
不幸的是,它不起作用。有谁知道这是如何在官方 Vimeo 应用程序中完成的?