如何在Java中设置更多面板
我需要将两个 JPanel 放入一个 JApplet 中。
paneel = new RekenmachinePaneel();
nummer = new NummerPaneel();
setContentPane(paneel);
现在我需要让数字面板显示在面板下方。我该怎么做呢?
I need to get two JPanels into one JApplet.
paneel = new RekenmachinePaneel();
nummer = new NummerPaneel();
setContentPane(paneel);
Now I need to get the nummer panel to show up beneath the paneel. How should I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想添加两个面板,则必须创建第三个面板:
如果您想获取特定组件内的面板数量,请使用以下命令:
If you want to add both panels you will have to create a third one:
If you want to get the number of panels you have inside an specific component use this:
您可以使用布局来定位它们。
You can use a layout to position them.
将布局设置为空。
通过将布局设置为空,您可以将任何面板移动到任何面板上。但不建议这样做,因为您不会使用布局的功能(表单、边框、框等)。
此外,您还需要正确定位面板的位置。
Make the layout as null.
By setting the layouts to null, you can move any panels over any panel. But its not recommended as you will not be using the power of layouts (form, border, box etc.,)
Also you would need to the location of the panels properly.