如圖這樣,其實是要插入一個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();這樣它才會啟動!