我正在寻找一个在整个帧中起作用的鼠标和按键监听器。这是代码的要点。
JFrame f = new JFrame();
JPanel p = new JPanel();
JTextArea t = new JTextArea();
... assume they're all properly initialized and added to the frame
问题是鼠标侦听器添加到面板的框架中,但不适用于 jtextarea。这是为什么?
这就是我所拥有的。
f.addMouseListener(MouseInput);
f.addMouseMotionListener(MouseInput);
f.addKeyListener(KeyBoardInput);