在 Java Swing 中捕获 JTabbedPanel 的关闭选项卡事件
是否可以捕获 Java Swing 中 JTabbedPanel 的关闭选项卡事件。
我想检查一些条件,如果不满足,那么我必须阻止用户关闭它。
谢谢!
更新:我创建了一个自定义事件,基于此 代码 及其解决了我的问题。
Is it possible to capture the close tab event for a JTabbedPanel in Java Swing.
I want to check for some conditions and if they are not met, then I have to prevent the user from closing it.
Thanks!
Update: I created a custom event, based on this code and it solved my problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sun 关于 选项卡式窗格 的教程有一个带有 close 的示例每个选项卡上的按钮。如果您查看示例的源代码,您可以看到它对单击关闭的反应。
编辑: ButtonTabComponent。它有一个扩展 JButton 的内部类。
根据您的评论,您是否已经有关闭选项卡的功能?为了实现这个目标你正在做什么?
Sun's tutorial on Tabbed Panes has an example with close buttons on each tab. If you look a the source of the example you can see it reacting to the close clicked.
Edit: ButtonTabComponent. It has an inner class that extends JButton.
Based on your comment, do you already have something in place that closes Tabs? What are you doing to achieve this?
我基于此 代码 创建了一个自定义事件,它解决了我的问题问题。
I created a custom event, based on this code and it solved my problem.