2

ツール ヒントからページ コーナーを削除しようとしていますが、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 を間違って使用しようとしていますか?

4

1 に答える 1

3
.page-corner {
    -fx-background-color: transparent;
}
于 2013-11-13T20:41:43.073 に答える