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