1
有2班鼠標點擊 -JFrame的 - 使用的JComponent和MouseListener的
public class MainClass {
public static void main(String[] args) {
JFrame frame = new JFrame();
....
Component mouseClick = new MyComponent() ;
frame.setVisible(true);
}
public class MyComponent extends JComponent implements MouseListener {
@Override
public void mouseClicked(MouseEvent arg0) {
System.out.println("here was a click ! ");
}
...
}
我試圖在frame
設置鼠標點擊的監聽器,但是當我運行它,然後按鼠標點擊沒有反應。
如何使它工作?