-5
在.net窗體中是否有任何事件來查找鼠標的移動?如果沒有,請建議我輸入好的庫。如果你能幫助我,這將是非常好的:P[.net]是否有任何形式的鼠標移動事件?
在.net窗體中是否有任何事件來查找鼠標的移動?如果沒有,請建議我輸入好的庫。如果你能幫助我,這將是非常好的:P[.net]是否有任何形式的鼠標移動事件?
// The following example displays the location of the form in screen coordinates
// on the caption bar of the form.
private void Form1_Move(object sender, System.EventArgs e)
{
this.Text = "Form screen position = " + this.Location.ToString();
}
對於這一點,請閱讀Control.Move Event on msdn或stackoverflow。
你可以google一下:( –
我知道,但我無法找到。這就是爲什麼我在這裏發帖 –
看到https://stackoverflow.com/questions/2063974/how-do-i -capture-the-mouse-move-event和https://msdn.microsoft.com/en-us/library/system.windows.forms.mouseeventargs.aspx和https://docs.microsoft.com/en-us/dotnet/framework/winforms/mouse-events-in-windows-forms –