Java: How can I bring a JFrame to the front?

半腔热情 提交于 2019-12-18 09:02:55

问题


I am currently waiting for a very important announcement and I have created a simple application to check every 30 minutes whether the announcement was made or not

When the announcement is made, I want a window to pop up and inform me about it. The window is just a simple JFrame that has some text in it.

I have a class called Announcement.

Inside this class I define another class for the frame called Form, so I have something like this:

 class Form{

    public Form(){
       //create frame and show it
          JFrame frame = new JFrame("anouncement");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container c = frame.getContentPane();
        frame.setSize(420, 100);
        JLabel l1 = new JLabel("The announcement was just made");
        l1.setFont(new Font("Courier New", Font.ITALIC, 20));
        c.add(l1);
        frame.setLocationRelativeTo(null);
        frame.setResizable(false);
        frame.setVisible(true);
        frame.toFront(); //this thing doesn't work
        }

 }

 public class Announcement{

       public static void main(String[] args){
           //do the checking every 30 minutes part
       }
 }

The toFront function doesn't work at all.

What I want it do is, for example: while I'm browsing, I want this window to pop up and set the focus on this window.

So I want it to be in front of all the other windows no matter how many other windows I have already opened.


回答1:


If I understand you correctly, your code has at least two windows -- one the basic program which you call "Form" and the other a window that you wish to "jump out" over the basic window, correct? If so, then don't use a second JFrame, but rather have the "jump-out" window be a JDialog or JOptionPane and make it dependent on the first window.

Please correct me if my assumptions are incorrect.



来源:https://stackoverflow.com/questions/9453068/java-how-can-i-bring-a-jframe-to-the-front

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!