第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

JButton 不會(huì)顯示另一個(gè) jframe

JButton 不會(huì)顯示另一個(gè) jframe

吃雞游戲 2023-05-17 14:39:48
我目前正在處理一個(gè)項(xiàng)目,每當(dāng)我單擊 jframe 2(登錄后的第二個(gè) jframe)上的 jbutton“設(shè)置約會(huì)”/btn1 時(shí),它不會(huì)顯示另一個(gè) jframe,即 jframe3。該程序本身可以工作,但該按鈕不會(huì)顯示其他 jframe。import java.awt.event.*;import java.io.*;import javax.swing.*;import java.awt.Color;import java.awt.Font;import java.awt.Container;public class me {public static void main (String [] args) {    JFrame jframe = new JFrame();    jframe.setSize(450,350);    jframe.getContentPane().setBackground(Color.WHITE);    ImageIcon c = new ImageIcon("teethlogo5.png");    JLabel bi = new JLabel("",c,JLabel.RIGHT);    bi.setBounds(25,35,400,40);    jframe.add(bi);    ImageIcon a = new ImageIcon("teethlogo2.png");    JLabel si = new JLabel("",a,JLabel.RIGHT);    si.setBounds(50,90,100,120);    jframe.add(si);    JLabel jl1 = new JLabel("Username:");    jl1.setBounds(190,100,100,50);    jframe.add(jl1);    JTextField uss = new JTextField();    uss.setBounds(270,110,120,30);    jframe.add(uss);    JLabel jl2 = new JLabel("Password:");    jl2.setBounds(190,150,100,50);    jframe.add(jl2);    JPasswordField pss = new JPasswordField();    pss.setBounds(270,160,120,30);    jframe.add(pss);    JButton enter = new JButton("log in");    enter.setBounds(250,210,100,40);    jframe.add(enter);    enter.addActionListener(new ActionListener(){        public void actionPerformed(ActionEvent e){            String userText;            String pwdText;            userText = uss.getText();            pwdText = String.valueOf(pss.getPassword());            if (userText.equals("user") && pwdText.equals("pass")) {                JOptionPane.showMessageDialog(null, "LoginSuccessful","Message",JOptionPane.PLAIN_MESSAGE);                jframe.setVisible(false);                JFrame jframe2 = new JFrame();                jframe2.setSize(850,560);                jframe2.getContentPane().setBackground(Color.WHITE);我是 Java 的初學(xué)者,我真的很想知道如何解決這個(gè)問題。
查看完整描述

1 回答

?
慕碼人2483693

TA貢獻(xiàn)1860條經(jīng)驗(yàn) 獲得超9個(gè)贊

你是在搬起石頭砸自己的腳:

if (btn1.isSelected()){
    // ...
    }

不需要這個(gè)代碼塊——一個(gè)按鈕不會(huì)被“選中”,除非它從 JToggleButton(例如 JCheckBox)擴(kuò)展并且已經(jīng)被選中,這是 JButton 不允許的,更重要的是,它正在阻止它從運(yùn)行中保存的偵聽器代碼。解決方案:擺脫它。


查看完整回答
反對(duì) 回復(fù) 2023-05-17
  • 1 回答
  • 0 關(guān)注
  • 151 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)