如何在 showOptionDialog 中证明/居中文本
How to you justify/ center text in a showOptionDialog
关于在 JOptionPane.showOptionDialog;
中居中文本的简单问题
我尝试使用 JLabels 的常规 JOptionPane 方法,但该方法不起作用,因为 JOptionPane.showOptionDialog 方法覆盖了输入文本。
JLabel warning = new JLabel()
int x = JOptionPane.showOptionDialog(warning,"I want this text \n to be centered","Confirm",JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE,null,finishedOptions, finishedOptions[0]);
warning.setHorizontalAlignment(SwingConstants.CENTER);
邮件正文可以使用HTML,例如:
String msg = "<html><center><b>I want this text</b></center><center>to be "
+ "<font color=blue>centered</font></center></html>";
JOptionPane.showMessageDialog(null, msg, "Confirm", JOptionPane.QUESTION_MESSAGE);
上面的消息框看起来像这样:
关于在 JOptionPane.showOptionDialog;
中居中文本的简单问题我尝试使用 JLabels 的常规 JOptionPane 方法,但该方法不起作用,因为 JOptionPane.showOptionDialog 方法覆盖了输入文本。
JLabel warning = new JLabel()
int x = JOptionPane.showOptionDialog(warning,"I want this text \n to be centered","Confirm",JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE,null,finishedOptions, finishedOptions[0]);
warning.setHorizontalAlignment(SwingConstants.CENTER);
邮件正文可以使用HTML,例如:
String msg = "<html><center><b>I want this text</b></center><center>to be "
+ "<font color=blue>centered</font></center></html>";
JOptionPane.showMessageDialog(null, msg, "Confirm", JOptionPane.QUESTION_MESSAGE);
上面的消息框看起来像这样: