是否无法从 Netbeans 中的主 JFrame[另存为 MainJFrame.java] 调用另一个 JInternalFrame 或 JPanel [另存为 NewJIF.java]?
我在 myproject 包中使用 New project->java->java 应用程序和同一包中的 NewJIF.java 创建了 MainJFrame.java 。
当在 MainJFrame.java 中单击 JButton 时,我希望使用 JInterFrame 打开 new NewJIF().setVisible(true);在 actionPerformed() 方法内。
但这不起作用...并且发现一些人说在 netbeans 中使用 swing 框架调用另一个 java 类是不可能的...
I have created a MainJFrame.java in the package myproject using New project->java->java aplication and NewJIF.java in the same package.
When a JButton clicked in MainJFrame.java i want JInterFrame to open using
new NewJIF().setVisible(true); inside actionPerformed() method.
But this is not working ...and caught some people saying this is impossible in netbeans to call another java class using swing framework...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我确信这是可能的。您可以将任何您想要的代码添加到 ActionListener。所以你没有理由不能这样做。
我建议您阅读 Swing 教程中关于如何使用内部框架<的部分/a>.了解 ActionListener 中的代码如何工作,然后将概念和代码合并到您的应用程序中。
I'm sure it is possible. You can add any code you want to an ActionListener. So there is no reason you can't do this.
I suggest you read the section from the Swing tutorial on How to Use Internal Frames. Understand how the code in the ActionListener works there and then incorporate the concepts and code in to your application.