JInternalFrame 中的 form_load 事件在哪里?
我有一个有两种形式的项目。第一个是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,您有一个
JFrame< /code>
可能包含
JInternalFrame
并且您想要一个菜单项来创建 JInternalFrame,不是吗?如果是这样,答案就像查看 Swing 教程一样简单:如何使用菜单。您要做的就是创建一个 Action 或一个
ActionListener
其中actionPerformed(ActionEvent)
方法将创建新的 JInternalFrame 并使其在您的JDesktopPane
。From waht I understand, you have a
JFrame
that may containJInternalFrame
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
whichactionPerformed(ActionEvent)
method will create the new JInternalFrame and make it visible in yourJDesktopPane
.