簡體   English   中英

似乎無法上班。

[英]Can't seem to get .remove to work

因此,對於我目前正在上的課,我需要創建一個ATM系統。 因此,我決定有2個面板。 在其中執行所有過程的主面板,以及在其中為用戶列出選項的選項面板。 如上所述,問題是我似乎無法移除主面板,因此實際上可以用面板替換它,例如創建帳戶屏幕。 實際上,所發生的只是終端窗口顯示。 完全空白。 據我檢查,button事件正在觸發,甚至超過了remove函數。

無論如何,我似乎無法弄清楚問題出在哪里,也許是因為面板上的按鈕也被刪除了。 這是相關的代碼。

public class AccountSystem extends JFrame implements ActionListener
{
    public static Account currentuser = new Account(); //This is so that the methods know which account is currently logged in so they can perform operations on it.
    public static int count=0;
    public static Account acc[] = new Account[1000];
    public static String parts[] = new String[3];
    private JButton login, logout, createacc, deposit1, deposit2, withdraw1, withdraw2, transfer1, transfer2, nevermind;
    private JPanel options, mainarea, titlecard;
    private JTextField username, password, transfer, depositarea, withdrawarea, retypearea;
    private JLabel userprompt, depositprompt, withdrawpromt, balancedisp, passwordprompt, mainmessage, title;
    private String newuser, newpass, newpassconfirm;
    BorderLayout borderlayout;
    GridLayout gridlayout;
    public AccountSystem()
    {
        borderlayout = new BorderLayout();
        borderlayout.setHgap(5);
        borderlayout.setVgap(5);
        //Establishing our buttons here.
        JButton login = new JButton("Login");
        login.addActionListener(this);
        JButton createacc = new JButton("New Account");
        createacc.addActionListener(this);

        //Establishing our panels here.
        JPanel options = new JPanel();
        JPanel mainarea = new JPanel();
        JPanel titlecard = new JPanel();
        //Establishing our JLabel here.
        JLabel userprompt = new JLabel("Username: ");
        JLabel passwordprompt = new JLabel("Password: ");
        JLabel title = new JLabel(" LOGIN ");
        //Establishing our textfields here.
        JTextField username = new JTextField(20);
        JTextField password = new JTextField(20);
        JTextField transfer = new JTextField(20);
        JTextField withdrawarea = new JTextField(20);
        //Building the GUI here.
        titlecard.setSize(500,50);
        titlecard.setLocation (0,0);
        mainarea.setSize(300,450);
        mainarea.setLocation(0,50);
        options.setSize(150,450);
        options.setLocation(300,50);
        titlecard.add(title);
        mainarea.add(userprompt);
        mainarea.add(username);
        mainarea.add(passwordprompt);
        mainarea.add(password);
        mainarea.add(login);
        mainarea.add(createacc);
        getContentPane().setLayout(null);
        getContentPane().add(titlecard);
        getContentPane().add(mainarea);
        getContentPane().add(options);
    }
}

public void actionPerformed (ActionEvent e) 
{
    if ((e.getActionCommand()).equals("Login"))
    {
        login();
    }
    else if ((e.getActionCommand()).equals("New Account"))
    {
        accountmaker();
    }
    else if ((e.getActionCommand()).equals("Deposit Funds"))
    {
        deposit();
    }
    else if ((e.getActionCommand()).equals("Withdraw Funds"))
    {
        withdraw();
    }
    else if ((e.getActionCommand()).equals("Withdraw"))
    {
        withdrawprocedure();
    }
    else if ((e.getActionCommand()).equals("Create Account"))
    {
        accountprocedure();
    }
}

public void accountmaker() //This is the screen where the user creates the account they want to. Of course, something needed to be done to differentiate this screen and the login screen.
{
    currentuser = null; //This is so that the program doesn't get somehow confused when dealing with multiple uses of the program.
    getContentPane().remove(mainarea);
    title.setText("Create New Account");
    mainarea = new JPanel();
    JLabel userprompt = new JLabel ("Username: ");
    JLabel passwordprompt = new JLabel("Password: ");
    JLabel retype = new JLabel ("Retype: "); //This is what makes it different from the login screen
    createacc = new JButton ("Create Account");
    createacc.addActionListener(this);
    JButton nevermind = new JButton("Cancel");
    nevermind.addActionListener(this);
    JTextField username = new JTextField(20);
    JTextField password = new JTextField(20);
    retypearea = new JTextField(20);
    mainarea.setSize(300,500);
    mainarea.setLocation(0,0);
    mainarea.add(userprompt);
    mainarea.add(username);
    mainarea.add(passwordprompt);
    mainarea.add(password);
    mainarea.add(retype);
    mainarea.add(retypearea);
    getContentPane().add(mainarea);
    getContentPane().invalidate();
    getContentPane().validate();
    getContentPane().repaint();
}

這是程序使用的Account類。

public class Account
{
    private String username;
    private String password;
    private double balance=0;
    public void deposit (double deposit)
    {
        balance += deposit;
    }
    public void withdraw (double withdraw)
    {
        balance -= withdraw;
    }
    public void setBalance (double newbalance)
    {
        balance = newbalance;
    }
    public void setUsername (String newusername)
    {
        username = newusername;
    }
    public void setPassword (String newpassword)
    {
        password = newpassword;
    }
    public String getUsername ()
    {
        return username;
    }
    public double getbalance ()
    {
        return balance;
    }
    public String getpassword()
    {
        return password;
    }
}

如果我理解正確,那么您基本上需要在某些情況下用帳戶面板替換主面板!

我已經編寫了示例代碼(請根據您的項目進行修改)

在此代碼中。我創建了4個面板,即Component Panel:要容納所有組件Main Panel:包含帶有文本“ Main Panel”的標簽,其邊框被塗成紅色。Account Account Panel:包含帶有文本“ Account Panel”的標簽及其邊框被塗成綠色選項面板:帶邊框的空面板被塗成藍色

兩個按鈕:帳戶按鈕:應該用帳戶面板替換主面板主按鈕:應該用主面板替換帳戶面板

使用GridBagLayout,您需要做的就是將主面板和帳戶面板放置在同一位置,即,兩者的gridx = 0和gridy = 0。 首先應顯示主面板。 在事件“帳戶按鈕”上,將主面板的可見性設置為false,將帳戶面板的可見性設置為true。 對於事件“主按鈕”,反之亦然。 GridBagLayout是一種出色的動態布局,它可以通過其lef來管理空白間距而沒有任何變形。

public class SwingSolution extends JFrame implements ActionListener
{
    private JPanel componentPanel = null;   
    private JPanel mainPanel = null;    
    private JLabel mainLabel = null;    
    private JPanel optionPanel = null;  
    private JPanel accountPanel = null; 
    private JLabel accountLabel = null; 
    private JButton replaceToAccountPanel = null;   
    private JButton replaceToMainPanel = null;

    private final static String MAIN_TO_ACCOUNT = "MainToAccount";
    private final static String ACCOUNT_TO_MAIN = "AccountToMain";

    public JPanel getComponentPanel()
    {
       if(null == componentPanel)
       {
           componentPanel = new JPanel();
           GridBagLayout gridBagLayout = new GridBagLayout();
           componentPanel.setLayout(gridBagLayout);

           GridBagConstraints constraint = new GridBagConstraints();
           constraint.insets = new Insets(10, 10, 10, 10);

           mainPanel = new JPanel();           
           constraint.gridx = 0;
           constraint.gridy = 0;
           mainPanel.setMinimumSize(new Dimension(100, 50));
           mainPanel.setPreferredSize(new Dimension(100, 50));
           mainPanel.setMaximumSize(new Dimension(100, 50));
           mainPanel.setBorder(
                   BorderFactory.createLineBorder(Color.RED));

           mainLabel = new JLabel("Main Panel");
           mainPanel.add(mainLabel);
           componentPanel.add(mainPanel, constraint);

           accountPanel = new JPanel();        
           constraint.gridx = 0;
           constraint.gridy = 0;
           accountPanel.setMinimumSize(new Dimension(100, 50));
           accountPanel.setPreferredSize(new Dimension(100, 50));
           accountPanel.setMaximumSize(new Dimension(100, 50));
           accountPanel.setBorder(
                   BorderFactory.createLineBorder(Color.GREEN));

           accountLabel = new JLabel("Account Panel");
           accountPanel.add(accountLabel);

           componentPanel.add(accountPanel, constraint);

           optionPanel = new JPanel();         
           constraint.gridx = 0;
           constraint.gridy = 1;
           optionPanel.setMinimumSize(new Dimension(100, 50));
           optionPanel.setPreferredSize(new Dimension(100, 50));
           optionPanel.setMaximumSize(new Dimension(100, 50));
           optionPanel.setBorder(
                   BorderFactory.createLineBorder(Color.BLUE));
           componentPanel.add(optionPanel, constraint);

           replaceToAccountPanel = new JButton("Account Button");
           replaceToAccountPanel.setName(MAIN_TO_ACCOUNT);
           constraint.gridx = 0;
           constraint.gridy = 2;
           replaceToAccountPanel.setSize(new Dimension(800, 30));
           replaceToAccountPanel.addActionListener(this);
           componentPanel.add(replaceToAccountPanel, constraint);

           replaceToMainPanel = new JButton("Main Button");
           replaceToMainPanel.setName(ACCOUNT_TO_MAIN);
           constraint.gridx = 1;
           constraint.gridy = 2;
           replaceToMainPanel.setMinimumSize(new Dimension(800, 30));
           replaceToMainPanel.addActionListener(this);
           componentPanel.add(replaceToMainPanel, constraint);
       }       
       return componentPanel;
    }

    public void actionPerformed (ActionEvent evt) 
    {
        JButton buttonClicked = (JButton) evt.getSource();
        if(buttonClicked != null)
        {
            if(buttonClicked.getName().equals(MAIN_TO_ACCOUNT))
            {
                mainPanel.setVisible(false);
                accountPanel.setVisible(true);
            }
            else if(buttonClicked.getName().equals(ACCOUNT_TO_MAIN))
            {
                mainPanel.setVisible(true);
                accountPanel.setVisible(false);
            }
        }       
    }

    public static void main(String[] args)
    {
        JFrame frame = new JFrame();
        SwingSolution main = new SwingSolution();

        frame.setTitle("Simple example");
        frame.setSize(400, 300);
        frame.setLocationRelativeTo(null);

        frame.setContentPane(main.getComponentPanel());

        frame.setVisible(true);
        frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM