嘿所以我按下按钮并出现一个名为“消息”的消息框。如何重命名此标题?
搜索此内容但未找到任何地方。
这就是我创建按钮然后激活它以便消息弹出的方式。没有粘贴整个代码导致它很长,但这对于这个按钮来说非常重要。
private JButton readmeButton;
readmeButton = new JButton("Readme");
layout.setConstraints(readmeButton, constraints);
chartPanel.add(readmeButton);
readmeButton.addActionListener(this);
JOptionPane.showMessageDialog(null, "lalala");
答案 0 :(得分:1)
JOptionPane.showMessageDialog
有多个重载。其中一个是showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
。
您可以使用:
JOptionPane.showMessageDialog(null, "lalala", "title", JOptionPane.PLAIN_MESSAGE);
最后一个参数的其他选项是ERROR_MESSAGE
,
INFORMATION_MESSAGE
,
WARNING_MESSAGE
,
QUESTION_MESSAGE
。
答案 1 :(得分:0)
使用
JOptionPane.showMessageDialog(null, "lalala","Readme",JOptionPane.PLAIN_MESSAGE);
在上面的链接中,还有很多其他选项。看看吧。
答案 2 :(得分:0)
在您的代码中尝试此操作:
JOptionPane.showMessageDialog(null, "Hello","Exit",JOptionPane.QUESTION_MESSAGE);