• javax.swing.JOptionPane.showMessageDialog() 方法


     //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);

  • 相关阅读:
    redis--列表
    redis ——字符串
    redis 第一节 redis安装、PHP扩展 、主从
    Python--day7
    Python--day6
    Python爬虫
    JSON基础
    Python--day5
    Python—day3
    Windows10 安装QT问题
  • 原文地址:https://www.cnblogs.com/shy1766IT/p/3032168.html
Copyright © 2020-2023  润新知