0
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class GUITest {
    private JPasswordField passwordBox;
    private JButton enterButton = new JButton ("Enter");
    private JLabel textBox = new JLabel("Enter Password Here:");;
    private JFrame frame = new JFrame();
    private JPanel panel = new JPanel();

    public void GUITest() {
        PanelSetup();
        FrameSetup();
    }
    
    public void PanelSetup(){
        panel.setBorder(BorderFactory.createEmptyBorder(150, 150, 250, 250));
        panel.setLayout(new GridLayout(0,1));
    }

    public void FrameSetup(){
        frame.add(panel, BorderLayout.CENTER);
        frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
        frame.setTitle("GUI TEST");
        frame.pack();
        frame.setVisible (true);
    }
    
    public static void main (String[] args) {
        new GUI();

    }
}

残念ながら、問題は新しい GUI を作成することであり、コードを実行して、残りの部分が機能するかどうか、さらに何かを追加するかどうかを確認することはできません。あなたがそれを助けることができれば、それは大歓迎です

4

1 に答える 1