本文介绍了如何在打开新选项卡时首先打开新选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个JavaFX TabPane,当我点击树节点时,我会在其中动态添加新标签。
I have a JavaFX TabPane in which I add new tabs dynamically when I click on a tree node.
tabPane.getTabs().add(tab);
tabPane.getSelectionModel().select(tab);
您能否告诉我如何打开新标签并将其始终放在其他标签之前。
Can you tell me how I can open a new tab and place it always first before the other tabs.
推荐答案
尝试:
tabPane.getTabs().add(0, tab);
这篇关于如何在打开新选项卡时首先打开新选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!