使用 Jidesoft 隐藏 DockableFrame 中的选项卡
我现在被JideSoft困住了。我有一个 DockableFrame,它会有很多视图。我想隐藏让我在视图之间切换的选项卡,但我不知道如何隐藏。有人可以帮忙吗?
I am stuck using JideSoft at the momemnt. I have a DockableFrame, which will have many views on it. I want to hide the tabs that let me switch between views, but I cannot figure out how. Can anybody help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用户可以右键单击选项卡或 DockableFrame 的标题来选择关闭菜单项以将其关闭。如果您参考如何使用 API 关闭它,DockingManager.hideFrame 会执行此操作。
User can right click on the tab or the title of DockableFrame to select close menu item to close it. If you refer to how to close it using API, DockingManager.hideFrame will do it.
DockableFrame.hideFrame(String frameName) 工作完美。
如果您想隐藏/取消隐藏 DockableFrame 内的组件,您需要访问该组件,设置可见性
,然后要求父 DockableFrame 重新验证自身。
DockableFrame.hideFrame(String frameName) works perfectly.
If you want to hide/unhide a component inside a DockableFrame you'll need to access that component, set the visibility
and then ask the parent DockableFrame to revalidate itself.