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.
我正在编写一个带有工具栏的程序。唯一的问题是我无法在工具栏中的组件(即日期选择器)上设置正确的大小。
截屏
所以我想在工具栏中调整日期选择器的大小。我怎样才能解决这个问题?
最漂亮的选择是调整它的大小,使文本字段足够大以显示日期。
要使工具栏正确拾取组件大小,您必须设置其首选、最大和最小大小。这对我有用:
Dimension d = cmpt.getPreferredSize(); d.width = YOUR_NEW_WIDTH; cmpt.setMinimumSize(d); cmpt.setMaximumSize(d); toolbar.add(cmpt);
标签