WPF ChromiumWebBrowser 网页背景透明

 

网页中添加下面样式即可:

 

 <style>
        html, body {
            margin: 0px;
            height: 100%;
            width: 100%;
            overflow: hidden;
            background: rgba(0, 0, 0, 0);
        }
</style>
View Code

 

posted @ 2018-05-21 14:32  天王星天  阅读(623)  评论(0)    收藏  举报