⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 popupdemo.java

📁 里面包含很多c语言的源码
💻 JAVA
字号:
import java.lang.System.*;
import java.awt.*;

public class PopUpWindowDemo extends Frame {

   Button open, quit;
   Frame popup = new PopUpWindow("I am a popup window");
   FlowLayout lm = new FlowLayout(FlowLayout.CENTER);

   public PopUpWindowDemo (String title) {
      super(title);
      setLayout(lm);
      setSize(400, 250);
      open = new Button("Show pop-up window");
      add(open);
      quit = new Button("Quit program");
      add(quit);
   }
   public static void main(String args[]) {
      PopUpWindowDemo app = new PopUpWindowDemo ("Pop-up window demo");
      app.show();
   }

   public boolean action(Event evt, Object arg) {
      if (evt.target instanceof Button) {
         String label = (String)arg;
         if (label.equals("Show pop-up window")) {
            if (!popup.isShowing())
                popup.show();
         }
         else {
             System.exit(0);
         }
      }
      return true;
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -