我正在嘗試向我的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)
被忽略設置寬度。
有什麼辦法可以解決這個問題嗎?
注意'TooltipBuilder'是用Java V8更新101棄用(它仍然工程雖然)。 – gbmhunter