如何摆脱JOptionPane左上角的任何标记?
int result = JOptionPane.showConfirmDialog(null, myPanel,
"Please Enter X and Y Values", JOptionPane.OK_CANCEL_OPTION);
这工作正常,但我想删除讨厌的?在左上角.
解决方法:
使用PLAIN_MESSAGE消息类型
JOptionPane.showConfirmDialog(null, "Help",
"Please Enter X and Y Values",
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.PLAIN_MESSAGE);