欢迎来到天天文库
浏览记录
ID:57688507
大小:57.00 KB
页数:2页
时间:2020-09-01
《Java窗口和消息提示框.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Java窗口-------------------------------------------importjava.awt.*;importjavax.swing.*;publicclassMyWindowextendsJFrame{ publicMyWindow(Stringtitle) { super(title); setSize(300,300); setLocation(30,50); setVisible(true); setDefaultCloseOperation(J
2、Frame.EXIT_ON_CLOSE); } publicstaticvoidmain(String[]args) { newMyWindow("窗口"); }}JAVA中提供如下消息提示框: JOptionPane.showMessageDialog(newFrame.getContentPane(),"弹出的是消息提示框!","系统信息",JOptionPane.INFORMATION_MESSAGE); JOptionPane.showMessageDialog(newFra
3、me.getContentPane(),"弹出的是警告提示框!","系统信息",JOptionPane.WARNING_MESSAGE); JOptionPane.showMessageDialog(newFrame.getContentPane(),"弹出的是错误提示框!","系统信息",JOptionPane.ERROR_MESSAGE); JOptionPane.showMessageDialog(newFrame.getContentPane(),"弹出的是询问提示框!","系
4、统信息",JOptionPane.QUESTION_MESSAGE);
此文档下载收益归作者所有