java中带参数的jFrame表单调用jpanel表单
我正在 netbeans 中以 jpanel 形式(拖放)工作。从 jframe 表单我想调用 jpanel 表单并希望将父框架作为参数传递。我怎样才能在netbeans中通过拖放来做到这一点?
I am working in jpanel form (drag and drop ) in netbeans. From jframe form i want to call a jpanel form and want to pass parent frame as parameter . How can I do that in drag and drop in netbeans ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
getParent()
访问 Swing 组件的父组件。请参阅 Component.getParent()< /a> 了解详细信息。
You can access the parent component of a Swing component using
getParent()
.See Component.getParent() for details.
在 GUI 编辑器中,您可以编辑自定义创建代码以调用您选择的构造函数。您的面板仍然必须有一个无参数的空白构造函数,因为它是一个 bean。
右键单击您的面板->属性->代码->自定义创建代码。
new MyPanel(this)
或者如上所述获取父级。
In the gui editor, you can edit the custom creation code to call a constructor of your choice. Your panel must still have a no argument blank constructor as it is a bean.
right click your panel->properties->code->custom creation code.
new MyPanel(this)
Or get the parent as mentioned.