您的位置:首页 > 编程语言 > Java开发

javax.swing.JOptionPane.showMessageDialog() 方法

2009-05-15 16:21 471 查看
//default title and icon          





JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","Message");            

//custom title, warning icon





JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane warning",JOptionPane.WARNING_MESSAGE);  

//custom title, error icon





JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane error",JOptionPane.ERROR_MESSAGE);

//custom title, no icon



      
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","A plain message", JOptionPane.PLAIN_MESSAGE);

//custom title, custom icon



            

JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green.", "Inane custom dialog", JOptionPane.INFORMATION_MESSAGE,icon);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  dialog