JComboBox width

后端 未结 5 977
南旧
南旧 2020-12-15 08:31

I have created a jComboBox but it takes the full width of the frame. how to set the width fixed.

yes borderlayout for the frame and box layout for the panel. i am

5条回答
  •  孤城傲影
    2020-12-15 08:48

    You might want to use setSize() method.

    combo.setSize(200, combo.getPreferredSize().height);
    

提交回复
热议问题