我正在尝试向我添加一个工具提示,ToggleButton
向用户解释如果他们按下它会发生什么。问题是,我的解释太长了,工具提示用“...”(省略号字符串,是吗?)无论如何,当我TooltipBuilder
在这个例子中通过类似设置最大/首选项宽度时:
this.watched = new ToggleButton("Watched?");
Tooltip tooltip = TooltipBuilder.create().wrapText(true).text(
"Rather than specifying individual images, you can make this source \'watched\',which means that every" +
" time this gallery is viewed, all the images in this directory will be listed.").build();
tooltip.prefWidth(50);
watched.setTooltip(tooltip);
我得到这个结果:
maxWidth(double)
我通过, maxWidthProperty().set(double)
,prefWidth(double)
和设置宽度的尝试prefWidthProperty().set(double)
被忽略了。
有什么办法可以克服这个吗?