How to make a transparent web view in windows phone 8 -


i want display local html file on web view control. problem background of web view control in white.

is there way solve problem?

try placing target control on of webview or bring webview infront (rt click -> order -> bring front) , change opacity of webview.

xaml (example)

<grid x:name="contentpanel" grid.row="1" margin="12,0,12,0">         <button content="button" horizontalalignment="left" margin="88,181,0,0" verticalalignment="top" height="88" width="279" background="#ffd35a5a"/>         <phone:webbrowser x:name="webview" horizontalalignment="left" margin="48,49,0,0" verticalalignment="top" height="345" width="319" opacity="0.5"/>      </grid> 

Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -