我一直在尝试使用以下内容在evaluationDependsOn ':remotelib'
的Swing中显示消息框:
:app
消息框显示为here:
当我添加此行
时JOptionPane
选项窗格如图所示here:
为了在消息框中获得纯白色背景,我该怎么做?
答案 0 :(得分:0)
您需要使面板背景也为白色。见this answer
v2
<强>更新强>
我有以下代码,它对我来说很好。
UIManager UI = new UIManager();
UI.put("OptionPane.background", Color.white);
UI.put("Panel.background", Color.white);
Here是UIManager的键列表