gpt4 book ai didi

javafx-2 - 如何隐藏 HTMLEditor 的控件?

转载 作者:行者123 更新时间:2023-12-04 00:02:14 25 4
gpt4 key购买 nike

是否可以在实际文本上方隐藏 HTMLEditor 的控件? (对齐、复制和粘贴图标、样式等)

谢谢你的帮助

最佳答案

public static void hideHTMLEditorToolbars(final HTMLEditor editor)
{
editor.setVisible(false);
Platform.runLater(new Runnable()
{
@Override
public void run()
{
Node[] nodes = editor.lookupAll(".tool-bar").toArray(new Node[0]);
for(Node node : nodes)
{
node.setVisible(false);
node.setManaged(false);
}
editor.setVisible(true);
}
});
}

关于javafx-2 - 如何隐藏 HTMLEditor 的控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10075841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com