How do I increase the width of a JComboBox
in Java? The layout I'm using is as follows:
setLayout(new FlowLayout(FlowLayout.LEFT));
How do I increase the width of a JComboBox
in Java? The layout I'm using is as follows:
setLayout(new FlowLayout(FlowLayout.LEFT));
FlowLayout
uses the preferred size of the component:
int largura = 100;
int altura = 21;
seuComboBox.setPreferredSize( new Dimension(largura,altura) );
Try this.
comboBox.setMaximumSize( comboBox.getPreferredSize() );