位置:首頁 > Java技術 > AWT > AWT MouseMotionEvent類

AWT MouseMotionEvent類

介紹

接口MouseMotionEvent指示組件中發生鼠標動作。這種低層次的活動所產生的一個組件對象時,拖動鼠標或移動。

類的聲明

以下是聲明java.awt.event.MouseMotionEvent類:

public class MouseMotionEvent
   extends InputEvent

接口中的方法

S.N. 方法&說明
1 void mouseDragged(MouseEvent e) 
Invoked when a mouse button is pressed on a component and then dragged.
2 void mouseMoved(MouseEvent e)
Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.

繼承的方法

這個接口繼承的方法從以下類:

  • java.awt.event.InputEvent

  • java.awt.event.ComponentEvent

  • java.awt.AWTEvent

  • java.util.EventObject

  • java.lang.Object