我有这个代码的简单场景:
scene.getStylesheets().add("packagename/testcss.css");
而我testcss.css是:
.button {
-fx-background-color: #DDFFA4;
}
.button:hover {
-fx-background-color: #9ACD32;
}
我实现是不错的效果是当又名徘徊在Web应用程序。
...
题
我怎样才能达到同样的效果,但没有一个单独的css文件,只是通过我的按钮的使用setStyle方法?
问题是,使用setStyle只接受样式定义,并留下了选择。
button.setStyle("-fx-background-color: #DDFFA4;");
选择器,在我的悬停情况下是伪类:
.button:hover
但我应该在哪里设置呢?
此外,的Javadoc是在排除在使用setStyle方法参数选择器显式:
需要注意的是,像HTML样式属性,此变量包含样式属性和价值,而不是一个样式规则的选择部分。
当你在你的问题指出,作为JavaFX的2.2,CSS的伪类不公开为公共API,你可以使用Java代码的内部风格操作的一部分。
如果你想改变Java代码的样式属性,而不使用样式表,你需要设置基于事件或changelisteners的样式。 有一对夫妇的下面的示例中的选项。
import javafx.application.Application;
import javafx.beans.binding.*;
import javafx.beans.property.SimpleStringProperty;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.scene.*;
import javafx.scene.control.Button;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.*;
import javafx.stage.Stage;
/** Changing button styles on hover without a css stylesheet. */
public class ButtonBackgroundChanger extends Application {
private static final String STANDARD_BUTTON_STYLE = "-fx-background-color: #DDFFA4;";
private static final String HOVERED_BUTTON_STYLE = "-fx-background-color: #9ACD32;";
public static void main(String[] args) throws Exception { launch(args); }
@Override public void start(final Stage stage) throws Exception {
Button configure = new Button("Configure");
changeBackgroundOnHoverUsingBinding(configure);
Button update = new Button("Update");
changeBackgroundOnHoverUsingEvents(update);
VBox layout = new VBox(10);
layout.setAlignment(Pos.CENTER);
layout.setStyle("-fx-padding: 10;");
layout.getChildren().addAll(configure, update);
stage.setScene(new Scene(layout));
stage.show();
}
private void changeBackgroundOnHoverUsingBinding(Node node) {
node.styleProperty().bind(
Bindings
.when(node.hoverProperty())
.then(
new SimpleStringProperty(HOVERED_BUTTON_STYLE)
)
.otherwise(
new SimpleStringProperty(STANDARD_BUTTON_STYLE)
)
);
}
public void changeBackgroundOnHoverUsingEvents(final Node node) {
node.setStyle(STANDARD_BUTTON_STYLE);
node.setOnMouseEntered(new EventHandler<MouseEvent>() {
@Override public void handle(MouseEvent mouseEvent) {
node.setStyle(HOVERED_BUTTON_STYLE);
}
});
node.setOnMouseExited(new EventHandler<MouseEvent>() {
@Override public void handle(MouseEvent mouseEvent) {
node.setStyle(STANDARD_BUTTON_STYLE);
}
});
}
}
我想只有真正做到这一点的代码,而不是一个样式表,如果颜色需要的是真正的动态利用样式表的预定义的颜色和样式有问题,或者是有一些其他的反感使用CSS样式表。
在JavaFX 8有是一个公共API,它可以让你(如果你愿意的话),以操控区域的背景颜色,而不使用CSS的 。
示例程序输出(带有更新按钮徘徊):
您可以选择将它们设置CSS改变/程序更新时,不同的事件被触发。我增加了以下功能来对我的签入按钮FXML文件的事件。
@FXML
private void onHover(MouseEvent event)
{
if(btnCheckin.getText().contentEquals("Check Out"))
{
btnCheckin.setStyle("-fx-font-size: 20; -fx-font-weight: bold; -fx-padding: -5 -5 -5 -5; \n" +
" -fx-border-color: #e2e2e2;\n" +
" -fx-border-width: 2;\n" +
" -fx-border-radius: 5;\n" +
" -fx-background-radius: 5;\n" +
" -fx-background-color: #3a3a3a;\n" +
" -fx-font-family: \"Lato Bold\", Helvetica, Arial, sans-serif;\n" +
" -fx-text-fill: white;\n" +
" -fx-background-insets: 0 0 0 0, 0, 1, 2;");
}
}
@FXML
private void onExit(MouseEvent event)
{
if(btnCheckin.getText().contentEquals("Check Out"))
{
btnCheckin.setStyle("-fx-font-size: 20; -fx-font-weight: bold; -fx-padding: -5 -5 -5 -5; \n" +
" -fx-border-width: 2;\n" +
" -fx-border-radius: 5;\n" +
" -fx-background-radius: 5;\n" +
" -fx-font-family: \"Lato Bold\", Helvetica, Arial, sans-serif;\n" +
" -fx-text-fill: white;\n" +
" -fx-background-insets: 0 0 0 0, 0, 1, 2;\n" +
" -fx-background-color: #EE6559;\n" +
" -fx-border-color: #EE6559;");
}
}
@FXML
private void onPress(MouseEvent event)
{
if(btnCheckin.getText().contentEquals("Check Out"))
{
btnCheckin.setStyle("-fx-font-size: 20; -fx-font-weight: bold; -fx-padding: -5 -5 -5 -5; \n" +
" -fx-border-color: #e2e2e2;\n" +
" -fx-border-width: 2;\n" +
" -fx-border-radius: 5;\n" +
" -fx-background-radius: 5;\n" +
" -fx-background-color: white;\n" +
" -fx-font-family: \"Lato Bold\", Helvetica, Arial, sans-serif;\n" +
" -fx-text-fill: #1d1d1d;\n" +
" -fx-background-insets: 0 0 0 0, 0, 1, 2;");
}
}
@FXML
private void onRelease(MouseEvent event)
{
if(btnCheckin.getText().contentEquals("Check Out"))
{
onHover(event);
}
}
文章来源: javafx 2 and css pseudo-classes: setting hover attributes in setStyle method