如何从 jtoolbar 中删除项目

发布于 2024-08-26 17:21:35 字数 124 浏览 6 评论 0原文

私有 JButton btnTask = new JButton(); ... TaiGlobal.taskbar.add(btnTask);

如何从 JToolBar 中删除 btnTask?

谢谢。

private JButton btnTask = new JButton();
...
TaoGlobal.taskbar.add(btnTask);

How to remove btnTask from JToolBar?

Thanx.

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

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

发布评论

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

评论(3

愿得七秒忆 2024-09-02 17:21:35

我尝试删除,但忘记了
重画

那么一般代码应该是:

panel.remove(...);
panel.revalidate();
panel.repaint();

revalidate() 很重要,因为它告诉面板布局组件。如果您要删除最后一个组件,您的代码可能会起作用,但我怀疑当您删除第一个组件时,它是否会起作用。

i tried remove, but forgotten for
repaint

Well the general code should be:

panel.remove(...);
panel.revalidate();
panel.repaint();

The revalidate() is important because it tells the panel to layout the components. Your code may work if your are removing the last component, but I doubt is will work when you remove the first component.

错爱 2024-09-02 17:21:35

JToolBar 是一个 Container,因此可以通过 toolbar.remove(btnTask)

如果您查看该 javadoc,您将看到其他有用的方法,例如 remove(index)removeAll()

JToolBar is a Container, and hence removal can be achieved via toolbar.remove(btnTask).

If you look at that javadoc you'll see other useful methods, like remove(index) and removeAll().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文