JApplet中的窗口打开事件

时间:2015-12-18 11:46:34

标签: java japplet

我做了一个gui扩展JFrame,现在我把它转换为JApplet,我遇到了一些方法/事件的问题。

  1. 我在JFrame

    中使用了Window Opened Event
    private void formWindowOpened(java.awt.event.WindowEvent evt) {                                  
        P1.setVisible(true);
        P2.setVisible(false);
        jProgressBar1.setVisible(false);
        jLabel15.setVisible(false);
    }  
    

    并且我不知道如何从JApplet

  2. 调用它
  3. 点击按钮,我使用close()方法

    private void close() {
         WindowEvent winClosingEvent = new WindowEvent(this, WindowEvent.WINDOW_CLOSING);
         Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(winClosingEvent);
    }
    
  4. 但是Applet并没有认识到这个" 任何人都可以帮助我吗?

0 个答案:

没有答案