如果标签移动到某个坐标,我该怎么办?

时间:2015-12-28 11:01:27

标签: java swing

我正在使用label.setLocation(x,y),我想知道如果标签转到某个xy坐标,我该怎么做?请让代码可以理解,非常简单,因为我现在不想让我感到困惑:)谢谢。

1 个答案:

答案 0 :(得分:4)

最简单的解决方案是创建自己的标签并覆盖setLocation方法:

public class MyLabel extends JLabel {
    @Override
    public void setLocation(int x, int y) {
        super.setLocation(x, y);

        //Check the X and Y and do something accordingly.
    }
}