JavaFX 2.0中带有表视图的弹出窗口

时间:2012-05-10 05:17:19

标签: javafx-2

我想单击一个按钮,以便弹出一个窗口,其中包含一个tableview元素。谁能告诉我怎么做?

提前致谢。

2 个答案:

答案 0 :(得分:12)

这是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();
    }
}

答案 1 :(得分:1)

您需要什么样的弹出窗口?使用新的StagePopup控件实现了吗? JavaFX有一个名为Popup的控件,阅读它以查看它是否满足您的需求。 Stage版本的入口点可以是Dialog with CLOSE button