如何使用set Location来移动组件

时间:2013-05-08 16:49:50

标签: java swing user-interface jpanel layout-manager

我正在尝试使用setLocation将此应用程序的组件设置为设置位置,到目前为止我还无法移动组件。有更多的代码,但它的调用和设置大部分代码。任何想法?

import javax.swing.*;



public class HangmanPanel extends JPanel {
    private static final long serialVersionUID = -5793357804828609325L;

    public HangmanPanel(){

        JLabel heading = new JLabel("Welcome to the Hangman App");
        JButton Button = new JButton("Ok");
        //Button.addActionListener();   
        JLabel tfLable = new JLabel("Please Enter a Letter");
        JTextField text = new JTextField(10);

        String input = text.getText();
        heading.setLocation(50, 20);
        tfLable.setLocation(20, 100);
        text.setLocation(320, 50);
        Button.setLocation(230, 100);

        this.add(heading);
        this.add(tfLable);
        this.add(text);
        this.add(Button);
    }
}

1 个答案:

答案 0 :(得分:3)

您不应该使用setLocation()来布局Swing组件,使用布局要好得多。请查看these Layout Tutorials