2010-08-10 83 views

回答

1

這是MouseMove事件,但你需要檢查參數按下按鈕:

void OnMouseMove(object sender, MouseEventArgs e) 
{ 
    if(e.Button == System.Windows.Forms.MouseButtons.Left) 
    { 
     /* this is it */ 
    } 
} 
+0

謝謝...它的工作原理。我認爲有一個事件沒有任何條件,但我沒有搜索到它。但這是一個好主意..謝謝:) – 2010-08-10 03:07:20