如何从 jtoolbar 中删除项目
私有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那么一般代码应该是:
revalidate() 很重要,因为它告诉面板布局组件。如果您要删除最后一个组件,您的代码可能会起作用,但我怀疑当您删除第一个组件时,它是否会起作用。
Well the general code should be:
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.
JToolBar
是一个Container
,因此可以通过toolbar.remove(btnTask)
。如果您查看该 javadoc,您将看到其他有用的方法,例如
remove(index)
和removeAll()
。JToolBar
is aContainer
, and hence removal can be achieved viatoolbar.remove(btnTask)
.If you look at that javadoc you'll see other useful methods, like
remove(index)
andremoveAll()
.也许这对你有用:
http://java.sun.com/docs/books/教程/uiswing/components/toolbar.html
和
http://java.sun.com/j2se/ 6/docs/api/javax/swing/JToolBar.html
最后一个链接显示了您可以使用的所有方法。
Maybe this would be useful for you:
http://java.sun.com/docs/books/tutorial/uiswing/components/toolbar.html
and
http://java.sun.com/j2se/6/docs/api/javax/swing/JToolBar.html
The last link shows you all the methods that you can use.