我想在某些用户操作之后显示NotificationPane。我的应用程序有多个场景,NotificationPane应该显示在当前活动的场景中。

整个过程都与Notification一起使用,在我需要时会弹出。
但是我不知道如何使它适用于NotificationPane。

我到目前为止所做的步骤:


我试图将NotificationPane直接放到我的场景中并打电话
show()-有效。
现在的想法是通过调用获取当前窗格
stage.getScene().getRoot(),将其包装到NotificationPane,然后调用
show()-它不起作用,我也不知道为什么。
((BorderPane) pane).setCenter(new Label("TEST"));这行用文本标签替换按钮,所以stage.getScene().getRoot()返回正确的对象


我编写了一个简单的程序来测试行为。一键调用NotificationPane。
有什么建议么?

这是我的测试程序:

package application;

import org.controlsfx.control.NotificationPane;

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {
        Button notificationPaneButton = new Button("NotificationPane");
        notificationPaneButton.setOnAction(e -> showNotificationPane(primaryStage, "Notification text"));

        VBox vbox = new VBox(5);
        vbox.setAlignment(Pos.CENTER);
        vbox.getChildren().addAll(notificationPaneButton);

        BorderPane borderPane = new BorderPane();
        borderPane.setCenter(vbox);

        primaryStage.setTitle("Notifications test");
        primaryStage.setScene(new Scene(borderPane, 300, 200));
        primaryStage.show();
    }

    public void showNotificationPane(Stage stage, String message) {
        Parent pane = stage.getScene().getRoot();
//      ((BorderPane) pane).setCenter(new Label("TEST"));
        NotificationPane notificationPane = new NotificationPane(pane);
        notificationPane.setText(message);
        if (notificationPane.showingProperty().get()) {
            notificationPane.hide();
            System.err.println("hide");
        } else {
            notificationPane.show();
            System.err.println("show");
        }

    }
}

最佳答案

好的,我现在看到了问题。包装当前窗格是不够的,我还必须将NotificationPane添加到场景。对?

无论如何,我当前的解决方案如下:


获取当前场景
获取当前窗格
包装窗格
用新场景替换当前场景


为了避免多次包装NotificationPane,我检查当前窗格是否已经是NotificationPane,然后调用show()

public void showNotificationPane(Stage stage) {
    Scene scene = stage.getScene();
    Parent pane = scene.getRoot();
    if (!(pane instanceof NotificationPane)){
        NotificationPane notificationPane = new NotificationPane(pane);
        scene = new Scene(notificationPane, scene.getWidth(), scene.getHeight());
        stage.setScene(scene);
        notificationPane.show();
    } else {
        ((NotificationPane)pane).show();
    }
}

09-28 12:25