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)
        {
        }
    }
相关推荐
故事不长丨1 小时前
C#队列深度剖析:解锁高效编程的FIFO密码
visualstudio·c#·wpf·多线程·winfrom·队列·queue
weixin_436804073 小时前
图片在线预览工具 - 输入URL即刻查看远程图片
html·媒体
weixin_584121436 小时前
HTML+layui表单校验范围值,根据条件显示隐藏某输入框
前端·html·layui
0思必得06 小时前
[Web自动化] BeautifulSoup导航文档树
前端·python·自动化·html·beautifulsoup
lhrimperial7 小时前
微服务架构深度解析-微服务理论基础(一)
微服务·架构·wpf
松涛和鸣8 小时前
DAY47 FrameBuffer
c语言·数据库·单片机·sqlite·html
西凉的悲伤8 小时前
html制作太阳系行星运行轨道演示动画
前端·javascript·html·行星运行轨道演示动画
hxjhnct9 小时前
响应式布局有哪些?
前端·html·css3
怎么就重名了9 小时前
Kivy的KV语言总结
前端·javascript·html
永远的WEB小白10 小时前
鼠标悬停显示提示文字 html+css
前端·javascript·html