Mouse moves too fast to capture events

后端 未结 2 1758
一生所求
一生所求 2021-01-23 10:25

this is related to: a previous question

BUT the question is my code only fails when i move the mouse really really fast over and around the TableLayoutPanel.

is

2条回答
  •  感情败类
    2021-01-23 10:48

    Mouse does not report its position by every pixel it passes, there are 20ms intervals between reports. If you manage to cross your control within this interval, it will catch no mouse events at all.

提交回复
热议问题