使用 Jidesoft 隐藏 DockableFrame 中的选项卡

发布于 2024-12-01 23:05:03 字数 86 浏览 2 评论 0原文

我现在被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 技术交流群。

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

发布评论

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

评论(2

究竟谁懂我的在乎 2024-12-08 23:05:03

用户可以右键单击选项卡或 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.

你怎么敢 2024-12-08 23:05:03

DockableFrame.hideFrame(String frameName) 工作完美。

如果您想隐藏/取消隐藏 DockableFrame 内的组件,您需要访问该组件,设置可见性

component.setVisibility(!component.isVisible());

,然后要求父 DockableFrame 重新验证自身。

parentFrame.revalidate();

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

component.setVisibility(!component.isVisible());

and then ask the parent DockableFrame to revalidate itself.

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