博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javax.swing.JOptionPane.showMessageDialog() 方法
阅读量:5995 次
发布时间:2019-06-20

本文共 710 字,大约阅读时间需要 2 分钟。

 //default title and icon           

javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","Message");             
//custom title, warning icon 
javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane warning",JOptionPane.WARNING_MESSAGE);   
//custom title, error icon 
javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane error",JOptionPane.ERROR_MESSAGE); 
//custom title, no icon 
javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想       
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","A plain message", JOptionPane.PLAIN_MESSAGE); 
//custom title, custom icon 
javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想             
JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green.", "Inane custom dialog", JOptionPane.INFORMATION_MESSAGE,icon);

转载地址:http://aqmlx.baihongyu.com/

你可能感兴趣的文章
利用try-catch判断变量是已声明未声明还是未赋值
查看>>
zxing二维码
查看>>
android中 回调方法,怎么转变为阻塞执行的方法
查看>>
.NET平台下的微信SDK(Rabbit.WeiXin)开源发布
查看>>
简要介绍如何集成Vitamio安卓版SDK
查看>>
BZOJ1107 : [POI2007]驾驶考试egz
查看>>
div与span区别及用法
查看>>
Senparc.Weixin.MP SDK 微信公众平台开发教程(十六):AccessToken自动管理机制
查看>>
【转载】COM小结
查看>>
Python的高级特性2:列表推导式,生成器与迭代器
查看>>
Ubuntu 14.04 64位字体美化(使用黑文泉驿)
查看>>
[android] AndroidManifest.xml - 【 manifest -> permission】
查看>>
20150728月度会议
查看>>
explain mysql性能优化
查看>>
NoSql---MongoDB基本操作
查看>>
【移动开发】WIFI热点通信(二)
查看>>
C#多线程编程实例 螺纹与窗口交互
查看>>
ByteBuffer用法小结
查看>>
使用linux mysql客户端建立表时遇到格式解析的问题
查看>>
find the mincost route(最小环,最短路,floyd)
查看>>