showInputDialog 格式化

showInputDialog Formatting

我正在尝试了解 Java 的 JOptionPane.showInputDialog 外观和感觉, 更具体地说,下面的注释行:

final JDialog dialog = new JDialog();
    dialog.setAlwaysOnTop(true);  
 // OptionPane.background("blue");
    JOptionPane.showInputDialog(dialog, "Dialog");

如何正确使用该行?

你应该试试这个

dialog.getContentPane().setBackground( Color.blue );