gpt4 book ai didi

Java - 删除按钮所在的面板

转载 作者:太空宇宙 更新时间:2023-11-04 07:59:56 24 4
gpt4 key购买 nike

是否有可能当我单击某个面板中的按钮时,该面板将被删除?

喜欢

public void actionPerformed(ActionEvent e) {
if(e.getSource()==removebutton)
System.out.println("ok");
removebutton.getRootPane().remove(cartpanel);

}

我正在尝试制作一个购物车,其中当客户查看购物车时,他将看到位于带有删除按钮的面板中的商品。然后,当他单击该按钮时,面板将被删除。

我上面的代码没有执行预期的输出,但是有没有应该使用的方法?

panel http://dl.dropbox.com/u/62021435/Untitled.png

最佳答案

您可以使用Component#getParent来获取对父容器的引用。然后,您需要获取 Container 的父级并从中删除按钮的容器...

Container myParent = removebutton.getParent();
Container parent = myParent.getParent();
parent.remove(myParent);

关于Java - 删除按钮所在的面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13004261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com