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.
我有一个 JFrame,其中包含一些在 NetBeans gui 设计器中制作的组件。其中一个组件是 JPanel。如何将该 JPanel 设置为扩展 JPanel 的另一个类(然后从该类绘制到面板)?
由于您的组件(也是)一个 JPanel,您可以将它安装在 NetBeans 的组件面板中。这使您可以将其拖放到设计器中。
以编程方式(假设您不使用 NetBeans 构建 GUI)您要查找的调用类似于:
frameInstance.setContentPane(yourJPanelDescendant);