我有一個簡短的問題,我希望有人能幫助我。如何推遲Java中的MouseOver?
請看下面的代碼片段:
public void mouseEntered(MouseEvent e){
//wait 2 seconds.
//if no other mouseEntered-event occurs, execute the following line
//otherwise restart, counting the 2 seconds.
foo();
}
有人可以幫我這個問題?我想實現一個像ToolTip一樣的行爲:用鼠標輸入一個區域。如果你的鼠標停留在那個位置,那麼做點什麼。
謝謝你的快速回復。它工作正常:) – Michael