gpt4 book ai didi

css - JavaFX - 用图像替换标准复选框

转载 作者:行者123 更新时间:2023-11-28 09:13:18 25 4
gpt4 key购买 nike

我想做的是用我自己的图片替换标准的 JavaFX 复选框。我做了很多搜索,我发现:

  • -fx-graphic : url
  • -fx-background-image : url

但是,在这两种情况下,都不是我想要的。

最佳答案

这是我用来用我自己的图像替换复选框的 CSS。这基于 JavaFX8 Modena 样式表,但对于 Caspian 应该相当接近。将 URL 替换为图像相对于 CSS 工作表的位置。

.check-box>.box {
-fx-background-insets: 0;
-fx-background-radius: 0;
-fx-background-color: transparent;
}

.check-box>.box>.mark {
-fx-background-image: url("unmarked.png");
-fx-background-position: center;
-fx-background-repeat: stretch;
-fx-shape: none;
}

.check-box:selected>.box>.mark{
-fx-background-color: transparent;
-fx-background-image: url("marked.png");
}

关于css - JavaFX - 用图像替换标准复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18082549/

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