我使用 setLocation(x, y) 将组件放置在基于 AWT 的小程序中,但是当我切换选项卡时,组件的位置会回到它们的默认布局。
import java.applet.*;
import java.awt.*;
public class AppletEx extends Applet {
Label test;
public void init() {
test = new Label("test");
add(test);
}
public void start() {
}
public void stop() {
}
public void destroy() {
}
public void paint() {
test.setLocation(10, 10);
}
}