0

我必须Login FormSwing. JButton ActionListner所以我写了以下代码:

private void Balance() throws IOException {
 getContentPane().removeAll();
 JPanel test = new JPanel();
 JLabel singin = new JLabel();
 javax.swing.ImageIcon icon = createImageIcon(
  "https://dl.dropboxusercontent.com/u/20476478/Capture.PNG",
    "a pretty but meaningless splat");
 singin.setIcon(icon);
 test.add(singin);
 getContentPane().add(test);
 repaint();
 printAll(getGraphics());
}

它创建如下 UI:

样本

But i am looking for this:

我想要这样

我尝试了很多,但无法适应上述尺寸。我刚开始学习Swing

4

1 回答 1

1

您可以使用FormLayout是一个例子。

于 2013-04-22T11:42:58.973 回答