我想单击一个按钮以显示一个弹出窗口,其中包含一个 tableview 元素。谁能告诉我该怎么做?
提前致谢。
这是JavaFX中简单弹出窗口的代码。希望这可以帮助。
public class PopupExample extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(final Stage primaryStage) {
primaryStage.setTitle("Popup Example");
final Popup popup = new Popup();
popup.setX(300);
popup.setY(200);
popup.getContent().addAll(new Circle(25, 25, 50, Color.AQUAMARINE));
Button show = new Button("Show");
show.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
popup.show(primaryStage);
}
});
Button hide = new Button("Hide");
hide.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
popup.hide();
}
});
HBox layout = new HBox(10);
layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 10;");
layout.getChildren().addAll(show, hide);
primaryStage.setScene(new Scene(layout));
primaryStage.show();
}
}
你需要什么样的弹出窗口?使用新的Stage
或Popup
控件实现?JavaFX 有一个名为 Popup 的控件,请阅读它以了解它是否满足您的需求。Stage 版本的入口点可以是Dialog with CLOSE button。