Question

I'd like to know if (and how) I could show a video (youtube or dailymotion) in a Windows 8.1 App.

I want to watch from an url like : http://www.dailymotion.com/embed/video/x1561xg

Thanks

Was it helpful?

Solution

I have solution for C#/XAML apps only. It might inspire you.

XAML

<WebView x:Name="webView" />

C#

webView.NavigateToString("<iframe width='620' height='348' src='http://www.dailymotion.com/embed/video/x1561xg' frameborder='0'></iframe>");
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top