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.
我正在尝试用 Java Swing 做一些事情。现在我正在使用 JInternalFrame 但因为它看起来是分离的窗口,我想知道我是否可以使用 Java swing 创建一些像这张图片一样的内部面板(?)。每当单击按钮时,我都想创建每一个。谢谢。
尽管JInternalFrame旨在用于 a 中JDesktopPane,如此处所示,JPanel但您可以在具有窄间隙的 a 中尝试它们,如此处GridLayout(1, 0, 2, 2)所示。
JInternalFrame
JDesktopPane
JPanel
GridLayout(1, 0, 2, 2)