ツール ヒントからページ コーナーを削除しようとしていますが、CSS を貼り付けることができません。
私のコードは次のようになります:
public class PinRender extends StackPane {
private Shape shape;
private Text textNode;
private String text;
public PinRender(Shape shape) {
this.shape = shape;
this.textNode = new Text();
this.text = "";
this.getChildren().add(shape);
this.getChildren().add(textNode);
this.getStylesheets().add(PinRender.class.getResource("ToolTipStyle.css").toExternalForm());
Tooltip tooltip = new Tooltip("ToolTips are the best!");
tooltip.getStyleClass().add("ttip");
Tooltip.install(this, tooltip);
}
public void setColor(Color c) {
shape.setFill(c);
}
}
そして私のCSSは次のようになります:
.ttip{
-fx-background-radius: 0 0 0 0;
-fx-background-color: linear-gradient(white,whitesmoke);
}
.page-corner {
-fx-shape: " ";
}
しかし、私はまだ、折り畳まれたページのコーナーでデフォルトの醜い黄色を取得しています.
CSS を間違って使用しようとしていますか?