gpt4 book ai didi

java - JOptionPane 按钮大小(Nimbus LAF)

转载 作者:行者123 更新时间:2023-11-29 05:06:47 24 4
gpt4 key购买 nike

最近我一直在使用 Nimbus Look and Feel 开发一个 Swing 项目。我想将 JOptionPane 中的所有按钮设置为具有相同的大小,但徒劳无功。

import javax.swing.*;

public class NimbusTest {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if (("Nimbus").equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
UIManager.put("OptionPane.sameSizeButtons", true);
String[] options = new String[]{"--------------------","short","1"};
int option = JOptionPane.showOptionDialog(null, "Nimbus problem", "JOptionPane", JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[1]);
}
});
}
}

我想要的是一个带有三个大小相同的按钮的 JOptionPane。但是,我得到了以下结果:

enter image description here

我的代码 UIManager.put("OptionPane.sameSizeButtons", true); 似乎被忽略了。如果我不想重新创建类似 JOptionPane 的对话框,我应该如何创建具有相同大小按钮的 JOptionPane?

最佳答案

替换

 UIManager.put("OptionPane.sameSizeButtons", true);

 UIManager.getLookAndFeelDefaults().put("OptionPane.sameSizeButtons", true);

它就像一个魅力

enter image description here

关于java - JOptionPane 按钮大小(Nimbus LAF),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30138984/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com