zoukankan      html  css  js  c++  java
  • 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);

  • 相关阅读:
    B-树与B+树
    RPC原理
    高可用
    Srpingboot与dubbo整合的三种方式
    html
    SQL5
    SQL4
    SQL3
    SQL2
    SQL语句1
  • 原文地址:https://www.cnblogs.com/shy1766IT/p/3032168.html
Copyright © 2011-2022 走看看