gpt4 book ai didi

java - 如何使图像填充整个按钮JavaFX

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:07:18 25 4
gpt4 key购买 nike

我想让图像适合整个按钮,没有多余的空间。我试过这个,但它不起作用:

 .toggle-button {
-fx-background-image: url("close.png");
-fx-background-repeat: stretch;
-fx-background-position: center center;
}

.toggle-button:selected{
-fx-background-image: url("contact.png");
}

这是我得到的结果:

enter image description here

如何让退出图片(红色方 block )填满整个按钮?

最佳答案

您需要设置背景尺寸,否则背景尺寸设置为零。尝试以下操作:

.toggle-button  {

-fx-min-height: 132px;

-fx-min-width: 128px;

-fx-background-image: url("close.png");

-fx-background-size: 100% 100%;

-fx-background-repeat: no-repeat;

-fx-background-position: center 8px;

}

关于java - 如何使图像填充整个按钮JavaFX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53053139/

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