如何删除JOptionPane中的问号?

Bur*_*ras 3 java swing joptionpane

如何摆脱JOptionPane左上角的任何标记?

int result = JOptionPane.showConfirmDialog(null, myPanel, 
                   "Please Enter X and Y Values", JOptionPane.OK_CANCEL_OPTION);
Run Code Online (Sandbox Code Playgroud)

这很好,但我想删除?左上角的讨厌.

Mad*_*mer 5

使用PLAIN_MESSAGE消息类型

JOptionPane.showConfirmDialog(null, "Help",
    "Please Enter X and Y Values", 
    JOptionPane.OK_CANCEL_OPTION, 
    JOptionPane.PLAIN_MESSAGE);
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述