NetBeans:如何启用/禁用 JTabedPane 中的特定选项卡
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您正在寻找的就是这个。
I believe what you are looking for is this.
您可以简单地使用
tabObject :- 是 JTabbedPane
索引将从 0 开始。因此,您应该对第二个和第三个选项卡使用 1 和 2
enabled 是布尔值 true 表示打开, false 表示关闭。
我认为这有帮助
you can simply use
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