简体   繁体   中英

Web Browser Control Windows Phone 8

Hello I want to open this website in my windows phone 8 App:

http://www.bukapeta.com/embed.php?peta=155&panel=tool

What i do so far is using this code in my XAML

<phone:WebBrowser Source="http://www.bukapeta.com/embed.php?peta=155&amp;panel=tool" />

But i dont know why it wont load the website, I make sure the internet connection running smoothly. Any Help ?

Thanks :D

I tested your website on my windows phone and it seems it takes a lot of time to load (around 35 seconds for me) because the whole UI is made of svg element and it is not mobile friendly. So maybe you just need to wait a bit longer to see it appear on your screen.

Also, make sure to give your element a name, because sometime this causes some problems.

<phone:WebBrowser Name="MyBrowser" IsScriptEnabled="true" Source="http://www.bukapeta.com/embed.php?peta=155&amp;panel=tool"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM