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.
我在 JDialog 中使用 jTable,当我需要使用滚动条时,它会拖动 JDialgo 而不是行。我正在使用 NetBeans 表单设计。
PD 当然,任何 JTable 都在 JScrollPane 中。
已编辑:在 Mac OS X 上,这是您指定时的一项功能setUndecorated(true),如本示例所示。改为使用setUndecorated(false)。只要您使用布局管理器和pack()对话框,就JTable应该采用合理的大小。如果需要,您可以使用此处setPreferredScrollableViewportSize()提到的 。另请参阅这些警告。
setUndecorated(true)
setUndecorated(false)
pack()
JTable
setPreferredScrollableViewportSize()