OptionPane: fixed styling custom panel background in JOptionPane (issue #761)

This commit is contained in:
Karl Tauber
2023-11-14 10:38:28 +01:00
parent 61ba011c3b
commit 7d0bdf3b9e
3 changed files with 40 additions and 21 deletions

View File

@@ -41,11 +41,15 @@ public class FlatOptionPaneTest
FlatOptionPaneTest() {
initComponents();
JPanel panel = new JPanel();
panel.setBackground( Color.green );
panel.add( new JLabel( "label in green panel" ) );
customOptionPane.setMessage( new Object[] {
"string",
"multi-\nline string",
new JCheckBox( "check box" ),
new JTextField( "text field" ),
panel,
"more text",
} );
customOptionPane.setOptions( new Object[] {