JInternalFrame 中的 form_load 事件在哪里?

发布于 2024-10-16 06:35:19 字数 234 浏览 6 评论 0原文

我有一个有两种形式的项目。第一个是 JFrame,第二个是 JInternalFrame。我制作了第一个类似 MDI 表单的表单。当我单击第一个表单的菜单时,应该显示第二个表单,其中包含来自 Ms. Access 2003 数据库的大量数据。我无法将事件添加到第二个表单,JInternalFrame 中的表单加载在哪里。我尝试使用 WindowListener 实现第二种形式,但它不起作用。请帮忙!

I have a project which have two form. 1st is JFrame and 2nd is JInternalFrame. I make a 1st one like MDI form. When I click on menu of 1st form, The 2nd form should be showed and contain a lot of data from Ms. Access 2003 Database. I fail to add event to the 2nd form, Where is form load in JInternalFrame. I try the implement my 2nd form with WindowListener, but it is not work. Please help !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日暮斜阳 2024-10-23 06:35:19

据我了解,您有一个 JFrame< /code>可能包含 JInternalFrame 并且您想要一个菜单​​项来创建 JInternalFrame,不是吗?

如果是这样,答案就像查看 Swing 教程一样简单:如何使用菜单。您要做的就是创建一个 Action 或一个 ActionListener其中actionPerformed(ActionEvent) 方法将创建新的 JInternalFrame 并使其在您的 JDesktopPane

From waht I understand, you have a JFrame that may contain JInternalFrame and you want a menu item to create a JInternalFrame, isn't it ?

if so, the answer is as simple as a look to the Swing tutorial : How to use menus. what you'll have to do is is to create either an Action or an ActionListener which actionPerformed(ActionEvent) method will create the new JInternalFrame and make it visible in your JDesktopPane.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文