4

現在、Java - Swing の mouseMoved イベントで問題が発生しています。簡単に言うと、JscrollPane をオンザフライで非表示または表示するために、JPanel を取得し、それに MouseMotionListener をアタッチしました。

myPanel.addMouseMotionListener(new MousePresenter());

MouseMotionListener インターフェイスを実装する独自のクラスがあります。

public class MousePresenter implements MouseMotionListener { 

  public void mouseMoved(MouseEvent e) {
   int x = e.getX();
   int y = e.getY();

   if (x>20 && x<200) {
    hideScrollBar();
   }
   else {
    showScrollBar();
   }

  }

} 

問題は、mouseMoved イベントが十分な頻度で発生していないことです。MouseMotionListener を使用しているときに、この問題に関連する解決策はありますか?

お時間をいただきありがとうございます。

4

5 に答える 5

2

The following seems to work just fine for me. Note that the handling of the event is rather fast:

  public static void main( String[] args ) {
    EventQueue.invokeLater( new Runnable() {
      @Override
      public void run() {
        JFrame frame = new JFrame( "TestFrame" );
        JPanel content = new JPanel( new BorderLayout() );

        final JLabel mousePosition = new JLabel( "Unknown" );
        content.add( mousePosition, BorderLayout.NORTH );

        content.addMouseMotionListener( new MouseMotionAdapter() {
          @Override
          public void mouseMoved( MouseEvent e ) {
            mousePosition.setText( "X: " + e.getX() + " Y: " + e.getY() );
          }
        } );
        frame.setContentPane( content );
        frame.setDefaultCloseOperation( WindowConstants.EXIT_ON_CLOSE );
        frame.pack();
        frame.setVisible( true );
      }
    } );
  }

That might not be the case for your hideScrollBar method

于 2012-09-27T10:02:07.807 に答える