zoukankan      html  css  js  c++  java
  • 在WebBrowser控件中获取鼠标在网页上点击的位置

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

            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));

     

  • 相关阅读:
    MYSQL数据库基础
    MSYQL操数据DML
    MYSQL外键约束
    MYSQL多表查询
    MYSQL结果排序、分页查询、聚合函数
    未能加载文件或程序集“System.Data.SQLite”或它的某一个依赖项”的解决方法
    由于扩展配置问题而无法提供您请求的页面。
    JS中的prototype(转载)
    mvc表单如何绑定bool类型的属性或变量
    使用c#正则验证关键字并找出匹配项
  • 原文地址:https://www.cnblogs.com/killmyday/p/1522198.html
Copyright © 2011-2022 走看看