我想实现一个简单的弹出控件,它应该可以用CSS设置样式。 一切正常,唯一的问题是如何在其中添加内容(JavaFX中的Node)?
在JavaFX 2.2.6中不推荐使用PopupWindow.getContent()
方法而不使用CSS,我能够看到内容,但CSS选择器将不起作用。
那么自己添加内容的最佳解决方案是什么呢,我应该为此目的实现自己的Skin类还是有一种简单的方法让它工作?
我准备了一个简单的用例:
import javafx.scene.control.Label;
import javafx.scene.control.PopupControl;
import javafx.scene.layout.StackPane;
import javafx.scene.shape.Rectangle;
public class PopupTest extends PopupControl {
public PopupTest() {
getStyleClass().add("popup"); // not working!?
StackPane pane = new StackPane();
pane.getStyleClass().add("pane");
Rectangle rectangle = new Rectangle(250, 250);
rectangle.getStyleClass().add("rect");
Label text = new Label("popup test");
text.getStyleClass().add("text");
pane.getChildren().addAll(rectangle, text);
// how to display to pane when the popup is shown?
getContent().addAll(pane);
}
}
为了完整性,这里是我的MainApplication和CSS文件:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
public class MainApplication extends Application {
@Override
public void start(Stage stage) throws Exception {
Group root = new Group();
final Scene scene = new Scene(root);
scene.getStylesheets().add(MainApplication.class.getResource("style.css").toExternalForm());
final Button button = new Button("show popup");
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
PopupTest popup = new PopupTest();
popup.show(scene.getWindow());
}
});
root.getChildren().add(button);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
的style.css:
.popup {
-fx-font-size: 24px;
}
.popup .rect {
-fx-fill: green;
}
.popup .text {
-fx-text-fill: white;
-fx-font-weight: bold;
}
“.popup”选择器在这里不起作用,如果我将它设置为“窗格”,它将设置弹出窗口的样式,使css正确:pane.getStyleClass().add("popup"); // working with this "fix"
。
答案 0 :(得分:3)
这似乎有效:
getScene().setRoot(pane);
关于样式类不起作用:PopupControl没有getStylesheets()
方法。也许它只能由setStyle(...)
直接设置样式?您可以通过简单地设置pane
样式或将pane
包装在根窗格中并设置样式来解决这个问题。