首页 > 编程 > C > 正文

浅析c#中如何在form的webbrowser控件中获得鼠标坐标

2020-01-26 15:57:08
字体:
来源:转载
供稿:网友


如图这样,其实是要插入一个time的控件,这样才能使得坐标值会根据鼠标的移动而不停变化。time插件中写
复制代码 代码如下:

private void timer1_Tick(object sender, EventArgs e)
        {
            if (webBrowser1.Bounds.Contains(this.PointToClient(Cursor.Position)))
            {

                this.toolStripStatusLabel1.Text = webBrowser1.PointToClient(Cursor.Position).ToString();
            }
        }
    }

这是在webbrowser中实现的。
要记得在form_load中,加入timer1.Start();这样它才会启动!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选