检测鼠标指针是否在

检测鼠标指针是否在

我正在尝试为自己的程序制作自己的组件,例如按钮和其他东西,但似乎无法使MouseEvent正常工作。我希望能够检测鼠标指针是否在组件的边界内,并且由于某种原因我的方法总是返回false。

这是我尝试过的一个示例:

public void mousePressed(MouseEvent e) {

    for (MyComponent component : components) {

        // getBounds() returns a Rectangle.
        if (component.getBounds().contains(e.getX(), e.getY())) {
            System.out.println("PRESSED");
        }

    }

}


另一个例子:

public void mouseEntered(MouseEvent e) {

    for (MyComponent component : components) {

        boolean isWithinBounds = isWithinBounds(e.getX(), e.getY(), component);

        if (isWithinBounds) {

            component.mouseEntered(e);

        }

    }

}

private boolean isWithinBounds(int x, int y, MyComponent component) {

    // getBounds() returns a Rectangle.
    if (x >= component.getBounds().x
            && x <= component.getBounds().x + component.getBounds().width
            && y >= component.getBounds().y
            && y <= component.getBounds().y + component.getBounds().height) {

        return true;

    } else {

        return false;

    }

}


有谁知道为什么这不起作用,我应该怎么做呢?

提前致谢!

最佳答案

You should add a mouse listener and react to the mouseEntered-Event:

JFrame.addMouseListener( new MouseAdapter() {

     public void mouseEntered( MouseEvent e ) {
        // your code here
     }
} );


可能有帮助:
Finding if my mouse is inside a rectangle in Java

10-07 16:29