我正在開發一個應用程序。我想在退出時出現一個消息框,其中包含消息,例如,「感謝您使用Soft Attendance」。然後幾秒鐘後自動消失。
我對這個如下寫代碼:自動消失的對話框
public void windowClosing(WindowEvent e){
int whichOption;
whichOption=JOptionPane.showConfirmDialog(f1,"Are you Serious?","Soft Attendence",JOptionPane.YES_NO_OPTION);
if(whichOption==JOptionPane.YES_OPTION){
f1.dispose();
JOptionPane.showMessageDialog(null,"Thanks for using Soft Attendence");
}
}
當我退出按鈕點擊確認對話框出現,之後點擊Yes按鈕 應用程序退出並出現另一個消息框。
Now I have two questions in my mind :
第一個問題是我已經部署應用程序,然後顯示消息框。 父母死後顯示消息框是否正常?
當出現第二個消息框時,我不想單擊「確定」按鈕。我想它應該會自動消失。所以我的第二個問題是如何顯示一段時間後自動消失的消息框?
對於[示例](http://stackoverflow.com/a/12451673/230513)。 – trashgod