NetBeans:如何启用/禁用 JTabedPane 中的特定选项卡

发布于 2024-12-07 15:52:34 字数 344 浏览 3 评论 0原文

我正在 Netbeans 中开发一个小型桌面应用程序。在我的 UI 上,我有一个包含 3 个选项卡的 JTabbedPane,现在我遇到了需要暂时禁用第二个和第三个选项卡的情况。我怎样才能以编程方式做到这一点。现在我正在使用以下代码,但它不起作用:

int n = jTabbedPane1.indexOfTab("Second Tab Name");// This line returns one as expected
jTabbedPane1.getTabComponentAt(n).enable(false);// but i guess some un-expected thing happens here

I am developing a small desktop application in Netbeans. on my UI i have a JTabbedPane having 3 tabs in it now i come across a situation where i need to temporarily disable 2nd and 3rd tab. How could i do that programatically. Rightnow i am using the following code but its not working:

int n = jTabbedPane1.indexOfTab("Second Tab Name");// This line returns one as expected
jTabbedPane1.getTabComponentAt(n).enable(false);// but i guess some un-expected thing happens here

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

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

发布评论

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

评论(2

长不大的小祸害 2024-12-14 15:52:34

我相信您正在寻找的就是这个。

jTabbedPane1.setEnabledAt(n, false);

I believe what you are looking for is this.

jTabbedPane1.setEnabledAt(n, false);
蘸点软妹酱 2024-12-14 15:52:34

您可以简单地使用

 tabObject.setEnabledAt(index, enabled);

tabObject :- 是 JTabbedPane
索引将从 0 开始。因此,您应该对第二个和第三个选项卡使用 1 和 2
enabled 是布尔值 true 表示打开, false 表示关闭。
我认为这有帮助

you can simply use

 tabObject.setEnabledAt(index, enabled);

tabObject :- is the JTabbedPane
index would start from 0.So,you Should use 1 and 2 for the second and third tabs
enabled is the Boolean value true for on and false for off.
i think it helps

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