如何使按钮透明

时间:2017-06-07 22:06:42

标签: javafx-2

我正在创建一个javafx应用程序,其中有一个带有背景图像的边框窗格。此边框窗格上的按钮应该是透明的。我似乎无法使用混合模式实现这一点,我不能。请帮我!!! 对不起,我无法发布代码

2 个答案:

答案 0 :(得分:1)

css:

.button{
     -fx-background-color: transparent; 
}

Javafx代码:

Button buttonColor = new Button("Color");
buttonColor.setStyle("-fx-background-color: transparent;");

答案 1 :(得分:-1)

你可以简单地使用

try {
  assert.isOk(false, 'this will be false')
  assert.isOk(true, 'this will be true ')
}
catch (e) {
  logMyErrors(e); // log failures or do something but don't exit 
}

要使其透明,如果您想再次显示,只需使用

button.setVisible(false);