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

📄 messagepopup.java

📁 很棒的web服务器源代码
💻 JAVA
字号:
// MessagePopup.java// $Id: MessagePopup.java,v 1.8 2000/08/16 21:37:56 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1997.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.widgets ;import java.awt.BorderLayout;import java.awt.Button;import java.awt.Color;import java.awt.Component;import java.awt.Container;import java.awt.FlowLayout;import java.awt.Frame;import java.awt.Label;import java.awt.Panel;import java.awt.Window;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;/** * A very simple popup displaying a message. * @author Benoit Mahe <bmahe@sophia.inria.fr> */public class MessagePopup implements ActionListener {    Frame frame    = null;    Label msg      = null;    Button okB     = null;    public void actionPerformed(ActionEvent evt) {	if (evt.getSource() == okB)	    frame.dispose();    }    /**     * show the popup.     */    public void show() {	frame.show();    }    /**     * build a Message popup.     * @param message, The message to display     */    public MessagePopup(String message) {	this("",message);    }    /**     * build a Message popup.     * @param title, the title.     * @param message, The message to display     */    public MessagePopup(String title, String message) {	msg   = new Label(message);	BorderPanel pmsg = new BorderPanel(BorderPanel.IN, 2);	pmsg.setLayout(new FlowLayout());	pmsg.add(msg);	okB   = new Button("Ok");	okB.addActionListener(this);	frame = new Frame(title);	frame.setBackground(Color.lightGray);	frame.setLayout( new BorderLayout());	frame.add(pmsg,"North");	Panel p = new Panel();	p.add(okB);	frame.add(p,"South");	frame.pack();    }}

⌨️ 快捷键说明

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