1

一歩一歩進んでいますが、さらに別のハードルに遭遇しました。

タイトルは一目瞭然ですが、メインの LoginScreen.class でカードを交換できるようにするために、ActionListener で JButton の「ログアウト」をどのように使用できるのでしょうか?

私はいくつかの強打をしましたが、役に立ちませんでした。また、コーディングとフォーマットを改善するためのヒントも大歓迎です。前もって感謝します。

これが私のコードです:

LoginScreen.class

 /*Login Screen class for allowing
multiple levels of access and security*/

//Imports library files
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
import java.util.*;

//Creates a LoginScreen class that extends the JFrame library class
class LoginScreen extends JFrame {

    //Creates a swing components and CardLayout for organising JPanels
    JPanel cardScreen;
    JPanel screen = new JPanel();
    Image ProgramIcon = Toolkit.getDefaultToolkit().getImage("imageIco.png");
    ImageIcon logo = new ImageIcon ("Logo.png");
    JLabel icon = new JLabel(logo);
    JLabel username = new JLabel("Username");
    JLabel password = new JLabel("Password");
    JTextField user = new JTextField(18);
    JPasswordField pass = new JPasswordField(18);
    JButton login = new JButton("Login");
    JLabel errorInfo = new JLabel("");
    int WIDTH = 800;
    int HEIGHT = 500;
    int currentPanel = 1;

     public static void main(String[] args){
     //Sets the GUI (Look and Feel) to the NimROD theme
        try {UIManager.setLookAndFeel("com.nilo.plaf.nimrod.NimRODLookAndFeel");}
        catch (UnsupportedLookAndFeelException e){ JOptionPane.showMessageDialog(null, "GUI Load Error: Unsupported");}
        catch (ClassNotFoundException e) { JOptionPane.showMessageDialog(null, "GUI Load Error: NimROD Missing");} 
        catch (InstantiationException e) { JOptionPane.showMessageDialog(null, "GUI Load Error: Instantiation Missing");} 
        catch (IllegalAccessException e) { JOptionPane.showMessageDialog(null, "GUI Load Error: Illegal Access"); } 

    //Creates a new LoginScreen via the LoginScreen method
        LoginScreen LS = new LoginScreen();
    }

    public LoginScreen(){
    //Adds the JPanel to the JFrame and set the JFrame's properties
    //Sets the main JPanel to CardLayout platform and adds other JPanels it
        final CardLayout cardL = new CardLayout();
        cardScreen = new JPanel();
        cardScreen.setLayout(cardL);
        cardScreen.add(screen, "1");;
        BaseScreen base = new BaseScreen();
        cardScreen.add(base, "2");
        this.setIconImage(ProgramIcon);
        this.setTitle("Login");
        this.setSize(WIDTH,HEIGHT);
        this.setResizable(false);
        this.add(cardScreen);
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);

     //Place the components on the JPanel and set their absolute posistions
        screen.setLayout(null);
        screen.add(username);
        screen.add(password);
        screen.add(user);
        screen.add(pass);
        screen.add(login);
        screen.add(icon);
        Dimension iconSize = icon.getPreferredSize();
        Dimension usernameSize = username.getPreferredSize();
        Dimension passwordSize = password.getPreferredSize();
        Dimension loginSize = login.getPreferredSize();
        Dimension userSize = user.getPreferredSize();
        Dimension passSize = pass.getPreferredSize();
        username.setBounds(252,170,usernameSize.width,usernameSize.height);
        password.setBounds(495,170,passwordSize.width,passwordSize.height);
        user.setBounds(180,200,userSize.width,userSize.height);
        pass.setBounds(420,200,passSize.width,passSize.height);
        login.setBounds(375,250,loginSize.width,loginSize.height);
        icon.setBounds(250,50,iconSize.width,iconSize.height);

        this.setVisible(true);

        login.addActionListener(new ActionListener() { 
            public void actionPerformed(ActionEvent ae) { 

                //Checks if both the user and pass text fields are empty
                if((user.getText().equals("")) && (pass.getText().equals(""))){

                    //Displays an error in the form of a label and adds it to the JPanel
                    errorInfo.setText("Please enter username and password");
                    screen.add(errorInfo);
                    errorInfo.setForeground(Color.RED);
                    Dimension errorInfoSize = errorInfo.getPreferredSize();
                    errorInfo.setBounds(300,300,errorInfoSize.width,errorInfoSize.height);
                }

                if((user.getText().equals("admin"))&&(pass.getText().equals("password"))){
                    cardL.show(cardScreen,"2");
                }
            }
        }); 
    }
}

BaseScreen.class

//Basescreen class

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


class BaseScreen extends JPanel{

    JPanel screen = this;
    JButton logout = new JButton("Logout");
    ImageIcon title = new ImageIcon("title.png");
    JLabel header = new JLabel(title);

    public BaseScreen(){

        screen.setLayout(null);
        screen.add(logout);
        screen.add(header);
        Dimension headerSize = header.getPreferredSize();
        Dimension logoutSize = logout.getPreferredSize();
        logout.setBounds(720,440,logoutSize.width,logoutSize.height);
        header.setBounds(0,0,headerSize.width,headerSize.height);
        screen.setVisible(true);
    }
}

JPanel を別のクラスに分離するためにあらゆる努力を払った理由を不思議に思っているなら、これは BaseScreen クラスを使用して他の多くの JPanel クラスに継承し、それぞれをカードとして追加するためです。クラスの 1 つで JButton を使用できることは、プログラムの構造が機能するために不可欠です。うまくいけば、私はこれを完全に間違った方法で行っておらず、プログラムを完全に書き直す必要はありません。

-ザルクス

4

0 に答える 0