使用其他 jinternalframe 类将 jinternalframe 类添加到 jdesktoppane
我正在创建一个非常简单的程序。 我创建了这个类: MainJframeClass、JDesktopPaneClass、JinternalFrameClass1 和 JinternalFrameClass2。 我所做的是实例化我的 jdesktoppaneclass 并将其命名为 Desktoppane1 并将其添加到 MainJframeclass 中。我还实例化了 2 个 jinternalframes 并将其命名为“internal1”和“internal2”。现在,我在 mainjframeclass 中有一个按钮,当我按下该按钮时,我会将内部 1 添加到桌面窗格 1 中。我现在的问题是如何使用放置在internal1中某处的按钮将internal2添加到desktoppane1。我知道为什么我可以向desktoppane1添加另一个按钮并添加internal2。但我已经做到了,我只是想解决这个问题。如果你能帮我的话。顺便说一句,对不起我的英语。
I'm creating a very simple program.
I have created this classes :
MainJframeClass, JDesktopPaneClass, JinternalFrameClass1 and JinternalFrameClass2.
what ive done is that i instantiated my jdesktoppaneclass and named it desktoppane1 and i added it to the MainJframeclass. i have also instantiated the 2 jinternalframes and named it internal1 and internal2. Now, i have button in mainjframeclass that when i press, i add the internal1 to desktoppane1. what my problem now is how to add the internal2 to desktoppane1 using a button placed somewhere in internal1. i know that why could i just add another button to desktoppane1 and add the internal2. but i have done it already, i just want to solve this problem. if you can help me please. sorry for my english by the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这只是一个参考的问题。向 JDesktopPane 添加内容的代码必须具有对其的引用,因此您需要通过构造函数参数或方法参数将该引用传递到需要它的类中。
编辑 1
例如:
It's simply a matter of references. The code that adds something to the JDesktopPane must have a reference to it, and so you will need to pass that reference into the class that needs it say via either a constructor parameter or a method parameter.
Edit 1
For example:
在添加到按钮的 ActionListener 中,您可以使用如下代码来获取对桌面窗格的引用:
In the ActionListener added to your button you can use code like the following to get a reference to the desktop pane: