WPF WebBrowser控件解析 HTML

WPF WebBrowser控件解析 HTML

xml 复制代码
Window里面的AllowsTransparency属性不要加
xml 复制代码
<WebBrowser x:Name="webBrowser"  />
csharp 复制代码
public void InitWeb()
{
   string htmlString = @"<html>
    <head>
        <title>this is a test</title>
        <script type ='text/javascript'>
            function Hello()
            {
                window.external.Hello('hello test'); // 传递事件
            }
        </script>
    </head>
    <body>
        <button onclick = 'Hello()'>
            hello test
        </button>
    </body>
</html> ";
            webBrowser.NavigateToString(htmlString);


            ObjectForScriptingHelper helper = new ObjectForScriptingHelper(this);
            webBrowser.ObjectForScripting = helper;
}
csharp 复制代码
    [System.Runtime.InteropServices.ComVisibleAttribute(true)]//将该类设置为com可访问
    public class ObjectForScriptingHelper
    {
        signature mainWindow;

        public ObjectForScriptingHelper(signature main) // 注意signature 要写成你自己项目中的对象名
        {
            mainWindow = main;
        }

        //这个方法就是网页上要访问的方法
        public void Hello(string cmd)
        {
        }
    }
相关推荐
fqrj20263 小时前
公司企业网站建设公司收费标准与报价明细解析
html·网站建设·网站开发
阿星AI工作室5 小时前
我用Gemini手搓了高颜MBTI人格测试网站!附全套提示词
人工智能·html
ZC跨境爬虫8 小时前
Scrapy多级请求实战:5sing伴奏网爬取踩坑与优化全记录(JSON提取+Xpath解析)
爬虫·scrapy·html·json
波波0079 小时前
写出稳定C#系统的关键:不可变性思想解析
开发语言·c#·wpf
周周记笔记9 小时前
初识HTML和CSS(一)
前端·css·html
aq55356009 小时前
网页开发四剑客:HTML/CSS/JS/PHP全解析
javascript·css·html
haierccc10 小时前
Win7、2008R2、Win10、Win11使用FLASH的方法
前端·javascript·html
bugcome_com10 小时前
从 MVVMLight 到 CommunityToolkit.Mvvm:MVVM 框架的现代化演进与全面对比
wpf
ZC跨境爬虫10 小时前
海南大学交友平台开发实战day7(实现核心匹配算法+解决JSON请求报错问题)
前端·python·算法·html·json
a11177613 小时前
变电站数字孪生大屏ThreeJS 开源项目
前端·信息可视化·开源·html