程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> 淺析c#中如何在form的webbrowser控件中獲得鼠標坐標

淺析c#中如何在form的webbrowser控件中獲得鼠標坐標

編輯:C語言基礎知識


如圖這樣,其實是要插入一個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();這樣它才會啟動!
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved