如何使用set x,y坐标将JLabel添加到Japplet

时间:2012-05-12 00:49:02

标签: java jlabel japplet

  

可能重复:
  How to find if image is clicked in JApplet?

我想出了最简单的游戏方式,我认为那是使用带有鼠标监听器的标签。问题是我不知道如何使用设置的可调坐标将其添加到applet。有一个简单的方法吗?

1 个答案:

答案 0 :(得分:1)

只需使用绝对定位。通过不使用布局管理器,您可以使用setLocation方法将组件放置在面板或框架中。

component.setLocation(x,y);

附录:http://docs.oracle.com/javase/tutorial/uiswing/layout/none.html