黑马程序员技术交流社区
标题:
浅析c#中如何在form的webbrowser控件中获得鼠标坐标
[打印本页]
作者:
陈君
时间:
2014-8-22 23:43
标题:
浅析c#中如何在form的webbrowser控件中获得鼠标坐标
以下是对c#中如何在form的webbrowser控件中获得鼠标坐标的实现方法进行了详细的分析介绍,需要的朋友可以参考下
221.jpg
(4.94 KB, 下载次数: 11)
下载附件
2014-8-22 23:43 上传
如图这样,其实是要插入一个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();这样它才会启动!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2