Making WebBrowser Transparent

前端 未结 4 1060
走了就别回头了
走了就别回头了 2020-12-07 02:36

I am trying to make a WebBrowser control on my Windows 7 Phone app transparent, so it can have the same theme as the rest of the app, but I have had no success with anything

4条回答
  •  遥遥无期
    2020-12-07 03:23

    you can style the html content displayed in the webbrowser component, so the component will have the look and feel of your app

                web_browser.NavigateToString(html: "" + your_html_content + "");
    

提交回复
热议问题