如何将 class 实例放在边框布局的北边?
How do I put a class instance at north of border layout?
我写了一个简单的定时器class,我想将框架布局设置为边框布局,并将定时器放在北方。我是布局新手,谁能帮我解决这个问题?
import java.awt.*;
import javax.swing.*;
public class TimerTest extends JFrame{
JButton timerLabel = null;
public TimerTest()
{
this.setTitle("Timer Test");
Container c = this.getContentPane();
c.setLayout(new FlowLayout());
timerLabel = new JButton("0");
timerLabel.setEnabled(false);
c.add(timerLabel);
this.setSize(150,150);
this.setVisible(true);
int k = 100;
while(true)
{
timerLabel.setText(k+" seconds left");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
k--;
}
}
public static void main(String[] args) {
new TimerTest();
}
}
Container c = this.getContentPane(); // has border layout by DEFAULT
c.setLayout(new FlowLayout()); // but now it has flow layout!
// ..
c.add(timerLabel);
因此将其更改为:
Container c = this.getContentPane(); // has border layout by DEFAULT
// ..
c.add(timerLabel, BorderLayout.PAGE_START); // PAGE_START is AKA 'NORTH'
其他提示:
- 不要扩展
JFrame
,只使用一个的实例。
JButton timerLabel
是个容易混淆的名字,应该是JButton timerButton
this.setTitle("Timer Test");
可以写成 super("Timer Test");
或者如果使用标准(未扩展)框架 .. JFrame frame = new JFrame("Timer Test");
this.setSize(150,150);
这个尺寸只是一个猜测。最好是this.pack();
while(true) .. Thread.sleep(1000);
不要阻塞 EDT(事件调度线程)。当发生这种情况时,GUI 将 'freeze'。有关详细信息和修复,请参阅 Concurrency in Swing。
public static void main(String[] args) { new TimerTest(); }
应在 EDT 上创建和更新基于 Swing 和 AWT 的 GUI。
我写了一个简单的定时器class,我想将框架布局设置为边框布局,并将定时器放在北方。我是布局新手,谁能帮我解决这个问题?
import java.awt.*;
import javax.swing.*;
public class TimerTest extends JFrame{
JButton timerLabel = null;
public TimerTest()
{
this.setTitle("Timer Test");
Container c = this.getContentPane();
c.setLayout(new FlowLayout());
timerLabel = new JButton("0");
timerLabel.setEnabled(false);
c.add(timerLabel);
this.setSize(150,150);
this.setVisible(true);
int k = 100;
while(true)
{
timerLabel.setText(k+" seconds left");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
k--;
}
}
public static void main(String[] args) {
new TimerTest();
}
}
Container c = this.getContentPane(); // has border layout by DEFAULT
c.setLayout(new FlowLayout()); // but now it has flow layout!
// ..
c.add(timerLabel);
因此将其更改为:
Container c = this.getContentPane(); // has border layout by DEFAULT
// ..
c.add(timerLabel, BorderLayout.PAGE_START); // PAGE_START is AKA 'NORTH'
其他提示:
- 不要扩展
JFrame
,只使用一个的实例。 JButton timerLabel
是个容易混淆的名字,应该是JButton timerButton
this.setTitle("Timer Test");
可以写成super("Timer Test");
或者如果使用标准(未扩展)框架 ..JFrame frame = new JFrame("Timer Test");
this.setSize(150,150);
这个尺寸只是一个猜测。最好是this.pack();
while(true) .. Thread.sleep(1000);
不要阻塞 EDT(事件调度线程)。当发生这种情况时,GUI 将 'freeze'。有关详细信息和修复,请参阅 Concurrency in Swing。public static void main(String[] args) { new TimerTest(); }
应在 EDT 上创建和更新基于 Swing 和 AWT 的 GUI。