• 在WebBrowser控件中获取鼠标在网页(不是浏览器窗口)上点击的位置,


    WebBrowser控件中获取鼠标在网页(不是浏览器窗口)上点击的位置,只有代码了,没有讲解:

        首先要引用

    (要引入Microsoft.mshtml.dll 地址是C:\Program Files\Microsoft.NET\Primary Interop Assemblies)

       private void webBrowser1_DocumentCompleted(object sender,WebBrowserDocumentCompletedEventArgs e)

            {

                webBrowser1.Document.MouseDown += new HtmlElementEventHandler(Document_MouseDown);

            }

            void Document_MouseDown(object sender, HtmlElementEventArgs e)

            {

                IHTMLDocument2 document = webBrowser1.Document.DomDocument as IHTMLDocument2;

                IHTMLElement2 element = document.body as IHTMLElement2;

                int scrolltop = webBrowser1.Document.Body.ScrollTop - element.clientTop;

                int scrollLeft = webBrowser1.Document.Body.ScrollLeft - element.clientLeft;

                if (document.body.parentElement != null)

                {

                    IHTMLElement2 parent = document.body.parentElement as IHTMLElement2;

                    scrolltop += parent.scrollTop - parent.clientTop;

                    scrollLeft += parent.scrollLeft - parent.clientLeft;

                }

                int positionX = e.ClientMousePosition.X + scrollLeft;

                int positionY = e.ClientMousePosition.Y + scrolltop;

                Debug.WriteLine(string.Format("positionX: {0}, positionY: {1}",

                    positionX, positionY));

  • 相关阅读:
    JavaScript与ajax的作用域问题
    Note
    理解C#反射
    秋季雾天驾驶注意安全
    开车撞车之后
    医保机构电话
    提前还贷四大细节需要注意
    请在这汽车内循环和外循环正确使用方法!你会用了吗?
    老外吐槽“娶中国老婆等于娶一家人”引共鸣
    车型与车主
  • 原文地址:https://www.cnblogs.com/hfzsjz/p/2780363.html
Copyright © 2020-2023  润新知