我有一個簡單的代碼在這裏添加一個標籤被點擊後。它工作正常,但爲了添加標籤,我必須在點擊按鈕後拖動或重新調整窗口大小。Java按鈕添加標籤後被重新或拖動或其他東西
這裏是我的代碼:
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class server01 extends Applet implements ActionListener {
Label helloLabel = new Label("applet v 0.0.1 | created for testing purpose");
Label hello2Label = new Label("this applet will be up-to-date.");
Button buttonButton = new Button("START" + " Button");
Label buttonLabel = new Label("Starting server...");
private static final long serialVersionUID = 1L;
public void init() {
setBackground(Color.black);
setForeground(Color.white);
buttonButton.setForeground(Color.black);
add(helloLabel);
add(hello2Label);
add(buttonButton);
buttonButton.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == buttonButton) {
add(buttonLabel);
}
}
}
你會下載陌生人指向的文件嗎?如果你想要一些幫助代碼,然後將該代碼作爲純文本發佈。也嘗試使[SSCCE](http://sscce.org/)。 – Pshemo 2013-04-06 11:59:45
我在帖子中說過,我不能因爲某些原因而不願意接受它。也許它太長或什麼? – 2013-04-06 12:04:54
虐待嘗試發佈它 – 2013-04-06 12:05:19