单击 JFrame 内的 JPanel

发布于 2024-10-05 11:07:29 字数 785 浏览 2 评论 0原文

所以我有一个JFrame,其中有一堆JPanel,称为venPanel。当我单击 venPanel 时,我希望 JFrame 在布局的东部添加一个新的 JPanel (因为 JFrame< /code> 使用边框布局)。如何在我的 venPanel 类中实现此目的?目前,venPanelmouseClick 操作监听器实现为:

@Override
public void mouseClicked(MouseEvent arg0) {
    try {
        GUIVenDetails vendetail = new GUIVenDetails(ven);
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}

其中 GUIVenDetails 是我想要添加到的 JPanel JFrame 的东边.. 我希望问题很清楚..

So I have a JFrame, in which it has a bunch of JPanel which is called venPanel. When I click on a venPanel I want the JFrame to add a new JPanel to the east of the layout (because the JFrame uses the border layout). How can I achieve this in my venPanel class? Currently the mouseClick action listener for the venPanel is implemented as:

@Override
public void mouseClicked(MouseEvent arg0) {
    try {
        GUIVenDetails vendetail = new GUIVenDetails(ven);
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

}

Where GUIVenDetails is the JPanel I wanted to add to the east of the JFrame..
I hope the question is clear..

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

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

发布评论

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

评论(2

前事休说 2024-10-12 11:07:29

或者,您可以将 JPanel 添加到使用 CardLayout 的 EAST,然后通过调用 CardLayout 在该位置交换 JPanel代码>方法。

Or you could add a JPanel to the EAST that uses a CardLayout and then swap JPanels in that spot by calling the CardLayout methods.

黑白记忆 2024-10-12 11:07:29

像这样的东西:

JPanel source = (JPanel)event.getSource();
JPanel parent = (JPanel)source.getParent();
parent.add(anotherPanel, BorderLayout.EAST);
parent.revalidate();

Something like:

JPanel source = (JPanel)event.getSource();
JPanel parent = (JPanel)source.getParent();
parent.add(anotherPanel, BorderLayout.EAST);
parent.revalidate();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文