以下是對c#中如何在form的webbrowser控件中獲得鼠標坐標的實現方法進行了詳細的分析介紹,需要的朋友可以參考下
如圖這樣,其實是要插入一個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();這樣它才會啟動!