如何在窗口之间交互_以实现一个确认框为例

Posted javafx-howto

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在窗口之间交互_以实现一个确认框为例相关的知识,希望对你有一定的参考价值。

如何在窗口之间交互 以实现一个确认框为例

有时候我们需要知道在另一个窗口关闭时,知道用户对此窗口的操作情况。比如典型的确认框:

这种情况下,我们需要调用 window.showAndWait() 方法,程序将等待窗口的关闭。

完整代码示例

下面代码由两个类组成:

  1. ConfirmWindow 实现了一个简单的确认框
  2. ConfirmWindowExample 启动了主窗口,然后通过一个按钮打开确认框,并等待确认结果
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;

class ConfirmWindow

    private boolean isConfirmed;
    private Stage confirmWindow;

    public boolean open(String content)
    
        isConfirmed = false;

        VBox vBox = new VBox();
        vBox.setPadding(new Insets(10));
        vBox.setSpacing(10);

        Label contentLabel = new Label(content);
        vBox.getChildren().add(contentLabel);

        HBox confirmHBox = new HBox();
        confirmHBox.setSpacing(10);
        
            // 添加确认、取消两个按钮
            Button confirmButton = new Button("确认");
            confirmButton.setDefaultButton(true);
            Button cancelButton = new Button("取消");
            confirmHBox.getChildren().addAll(confirmButton, cancelButton);

            confirmButton.setOnAction(e -> 
                isConfirmed = true;
                confirmWindow.close();
            );

            cancelButton.setOnAction(e -> 
                isConfirmed = false;
                confirmWindow.close();
            );
        
        vBox.getChildren().add(confirmHBox);

        Scene scene = new Scene(vBox);

        confirmWindow = new Stage();
        confirmWindow.initModality(Modality.APPLICATION_MODAL);
        confirmWindow.setScene(scene);
        confirmWindow.showAndWait(); // 执行代码在此处暂停,当窗口关闭后继续执行后面的代码,即 return 一个确认状态

        return isConfirmed;
    


public class ConfirmWindowExample extends Application

    @Override
    public void start(Stage window) throws Exception
    
        VBox vBox = new VBox();

        Button button = new Button("Open Confirm Window");
        button.setOnAction(e -> 
        
            boolean isConfirmed = new ConfirmWindow().open("你确认吗?"); // 执行代码在此处暂停,等待 openConfirmWindow 返回
            if (isConfirmed)
            
                System.out.println("Confirmed");
            
            else
            
                System.out.println("Not Confirmed");
            
        );

        vBox.getChildren().add(button);

        Scene scene = new Scene(vBox, 400, 300);

        window.setScene(scene);
        window.setTitle(this.getClass().getSimpleName());
        window.show();
    

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

上述代码有几点注意:

  1. confirmWindow 没有给 Scene 设置宽高,那么它将自动调整为主布局的大小,而主布局的大小又会根据控件的添加而调整
  2. setSpacing 的意思是设置布局内控件的至少间隔多少像素
  3. setPadding 的意思是设置布局内的控件和布局边缘的距离至少间隔多少像素
  4. 注意到 confirmButton 调用了 setDefaultButton(true) ,这是将其设置为主按钮,从而获得一个特殊的颜色(windows下是蓝色按钮)
  5. confirmWindow 的根布局是一个 VBox ,而其中又嵌入了一个 HBox ,此 HBox 内包含了确认和取消两个按钮

总结

我们可以通过 showAndWait 方法等待一个窗口关闭,从而实现和这个窗口进行交互。

和一个窗口交互的步骤如下:

  1. 写一个函数,在其中新建一个窗口
  2. 调用此窗口的 showAndWait 来显示
  3. 在 showAndWait 方法后,return 要返回的内容

在提交表单之前显示弹出窗口/模式以进行确认

【中文标题】在提交表单之前显示弹出窗口/模式以进行确认【英文标题】:Show pop-up/modal for confirmation before form submission 【发布时间】:2017-05-18 05:53:02 【问题描述】:

使用 AngularJS,我们如何在提交表单数据之前显示一个弹出窗口,用于重新检查和确认单击提交按钮时输入的输入值?

【问题讨论】:

我猜你在寻找什么,就 UI 而言,被称为“模态”?你可以在这里找到一些例子angular-ui.github.io/bootstrap搜索模态。 【参考方案1】:

试试Uib modal。 https://angular-ui.github.io/bootstrap/#!#modal

angular.module('ui.bootstrap.demo', ['ngAnimate', 'ngSanitize', 'ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('ModalDemoCtrl', function ($uibModal, $log, $document) 
  var $ctrl = this;
  $ctrl.animationsEnabled = true;
  $ctrl.name = "Manikandan";

  $ctrl.open = function (size, parentSelector) 
    var parentElem = parentSelector ? 
      angular.element($document[0].querySelector('.modal-demo ' + parentSelector)) : undefined;
    var modalInstance = $uibModal.open(
      animation: $ctrl.animationsEnabled,
      ariaLabelledBy: 'modal-title',
      ariaDescribedBy: 'modal-body',
      templateUrl: 'myModalContent.html',
      controller: 'ModalInstanceCtrl',
      controllerAs: '$ctrl',
      size: size,
      appendTo: parentElem,
      resolve: 
        values: function () 
          return $ctrl.name;
        
      
    );

    modalInstance.result.then(function () 
      $ctrl.msg = "Submitted";
      $ctrl.suc = true; 
    , function(error) 
      $ctrl.msg = 'Cancelled';
      $ctrl.suc = false; 
    );
  ;
);


angular.module('ui.bootstrap.demo').controller('ModalInstanceCtrl', function ($uibModalInstance, values) 
 var $ctrl = this;
 $ctrl.name= values;
  $ctrl.ok = function () 
    $uibModalInstance.close('ok');
  ;

  $ctrl.cancel = function () 
    $uibModalInstance.dismiss('cancel');
  ;
);
<!doctype html>
<html ng-app="ui.bootstrap.demo">
  <head>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-sanitize.js"></script>
    <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.js"></script>
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>

<div ng-controller="ModalDemoCtrl as $ctrl" class="modal-demo">
    
   <br> 
<form name="form" novalidate>
  <input type="text" style="width:200px" class="form-control" name="name" ng-model="$ctrl.name" required><br>
   <button type="button" ng-disabled="form.$invalid" class="btn btn-default" ng-click="form.$valid && $ctrl.open()">Save</button>
</form><br>
    <p ng-hide="!$ctrl.msg" class="alert" ng-class="'alert-success':$ctrl.suc, 'alert-danger':!$ctrl.suc">$ctrl.msg</p>
    
</div>
<script type="text/ng-template" id="myModalContent.html">
        <div class="modal-header">
            <h3 class="modal-title" id="modal-title">Your Details</h3>
        </div>
        <div class="modal-body" id="modal-body">
           
            <p>Are you sure, your name <b>$ctrl.name </b> is going to submit?
        </div>
        <div class="modal-footer">
            <button class="btn btn-primary" type="button" ng-click="$ctrl.ok()">Submit</button>
            <button class="btn btn-warning" type="button" ng-click="$ctrl.cancel()">Cancel</button>
        </div>
    </script>
  </body>
</html>

【讨论】:

【参考方案2】:

用js代码:

if(confirm("xxx"))
 
      //do next step
 

【讨论】:

以上是关于如何在窗口之间交互_以实现一个确认框为例的主要内容,如果未能解决你的问题,请参考以下文章

vue.js实现单选框复选框和下拉框

回顾JS如何向网页中输入内容,与浏览器窗口进行交互

vue.js实现单选框复选框和下拉框

如何以交互方式更新 matplotlib imshow() 窗口?

如何以交互方式更新 matplotlib imshow() 窗口?

PB高手们请赐教!PB能使动态文本框背景透明吗?诸如“mle_1”控件,数据窗口背景能透明也行!见详述~