gpt4 book ai didi

java - JOptionPane 更大

转载 作者:行者123 更新时间:2023-12-02 13:19:45 26 4
gpt4 key购买 nike

我正在 Java 上开发 Tic Tac Toe 游戏(eclipse)。在我的计算机上,我的对话框非常小。我一直在努力把它做得更大。我没有任何运气。我希望这里有人能引导我走向正确的方向。下面的代码是我的对话框代码:

JOptionPane.showMessageDialog(frame, "Tic Tac Toe Server is Running");

提前谢谢您

最佳答案

如上所述here ,你可以这样做:

UIManager.put("OptionPane.minimumSize",new Dimension(500,500)); 
JOptionPane.showMessageDialog(frame, "Tic Tac Toe Server is Running" );

更新:为了使字体变大,您可以向 Pane 添加一个组件,例如 JLabel;如下:

JLabel label = new JLabel("Tic Tac Toe Server is Running");
label.setFont(new Font("Arial", Font.BOLD, 18));
JOptionPane.showMessageDialog(frame, label);

关于java - JOptionPane 更大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43623278/

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