1. ホーム
  2. java

[解決済み] setLocation を使用してコンポーネントを移動する方法

2022-02-14 19:18:06

質問

このアプリケーションのコンポーネントを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);
    }
}

解決方法は?

を使うべきではありません。 setLocation() を使用してSwingコンポーネントをレイアウトする方がはるかに優れています。レイアウトを使用したほうがよいでしょう。 レイアウトのチュートリアル .