Swing JOptionPane背景颜色不同

时间:2017-08-14 12:50:56

标签: java swing joptionpane uimanager

我一直在尝试使用以下内容在evaluationDependsOn ':remotelib'的Swing中显示消息框:

:app

消息框显示为here

当我添加此行

JOptionPane

选项窗格如图所示here

为了在消息框中获得纯白色背景,我该怎么做?

1 个答案:

答案 0 :(得分:0)

您需要使面板背景也为白色。见this answer

v2

<强>更新

我有以下代码,它对我来说很好。

     UIManager UI = new UIManager();
     UI.put("OptionPane.background", Color.white);
     UI.put("Panel.background", Color.white);

Here是UIManager的键列表 enter image description here