Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使 JComboBox 的“下拉菜单”(或“弹出菜单”,我不知道它怎么称呼)在屏幕上更高?
默认情况下,当我打开 JComboBox 时,我看到 29 个项目中有 7 个,然后我需要滚动。
我应该怎么做才能看到这 32 个项目中的 15 个?(或者如果下拉菜单是 150 像素高,我怎样才能让它高 300 像素?)
我已经阅读了关于 JComboBox 和 JavaDoc 的 Sun 教程,但我一定忽略了要调用的方法。
您正在寻找setMaximumRowCount方法。
JComboBox 教程有一些示例代码展示了它的作用。