Display text to a label from another class - JFrame

前端 未结 5 627
感情败类
感情败类 2021-01-16 22:45

I have a GUI screen, and it has a label in it. I now want to set the label with a text as i have shown in below (Test). But it\'s not getting updated. I think t

5条回答
  •  情书的邮戳
    2021-01-16 23:27

    Change the mainScreen() function to

    public  void mainScreen() {
            EventQueue.invokeLater(new Runnable() {
                public void run() {
                    try {
                        setVisible(true);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            });
        }
    

    remaining code is same

提交回复
热议问题