我必须从JOptionPane.showInputDialog更改背景颜色和选项框的大小。可能吗?它包括in this list吗?
答案 0 :(得分:2)
The are two ways you could try.
The first is using the UIManager and seeing if you can set the background of the JOptionPane that way.
The second is to use JOptionPane with a custom component that is designed to look (and feel) the way you want it, like
Component mySpecialDialog = ... // your dialog panel
JOption.showMessageDialog(null, mySpecialDialog);