当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaFX 类 Popup用法及代码示例


弹出窗口类是JavaFX的一部分。 Popup类创建一个不带内容,为空填充且透明的弹出窗口。弹出类用于显示通知,按钮或下拉菜单等。弹出框没有装饰。它实质上是一个没有装饰的专用场景/窗口。

该类的构造函数:

  • Popup():创建Popup类的对象。

常用方法:


方法 说明
getContent() 要在此弹出窗口上呈现的节点的ObservableList。
setAutoHide(boolean v) 将自动隐藏的值设置为指定的布尔值。
isShowing() 返回弹出窗口是否可见。

以下程序说明了Popup类的用法:

  1. Java程序创建一个弹出窗口并将其添加到舞台:在此程序中,我们创建一个名为popup的Popup。弹出窗口包含一个名为label的Label。我们还创建了一个名为button的Button,并向其中添加了事件处理程序,如果隐藏了该弹出窗口,则将其显示,如果已经可见,则将其隐藏。将按钮添加到TilePane,并将TilePane添加到场景,并将场景添加到舞台。调用show函数以显示结果。使用setStyle()函数设置标签的背景色,使用setMinHeight(),setMinWidth()函数设置标签的尺寸。 hide()和show()函数用于隐藏或显示弹出窗口。
    // Java program to create a popup and  
    // add it to the stage 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.Button; 
    import javafx.scene.layout.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.scene.control.Label; 
    import javafx.stage.Stage; 
    import javafx.stage.Popup; 
       
    public class Popup_1 extends Application { 
       
        // launch the application 
        public void start(Stage stage) 
        { 
       
            // set title for the stage 
            stage.setTitle("Creating popup"); 
       
            // create a button 
            Button button = new Button("button"); 
       
            // create a tile pane 
            TilePane tilepane = new TilePane(); 
       
            // create a label 
            Label label = new Label("This is a Popup"); 
       
            // create a popup 
            Popup popup = new Popup(); 
       
            // set background 
            label.setStyle(" -fx-background-color:white;"); 
       
            // add the label 
            popup.getContent().add(label); 
       
            // set size of label 
            label.setMinWidth(80); 
            label.setMinHeight(50); 
       
            // action event 
            EventHandler<ActionEvent> event =  
            new EventHandler<ActionEvent>() { 
       
                public void handle(ActionEvent e) 
                { 
                    if (!popup.isShowing()) 
                        popup.show(stage); 
                    else
                        popup.hide(); 
                } 
            }; 
       
            // when button is pressed 
            button.setOnAction(event); 
       
            // add button 
            tilepane.getChildren().add(button); 
       
            // create a scene 
            Scene scene = new Scene(tilepane, 200, 200); 
       
            // set the scene 
            stage.setScene(scene); 
       
            stage.show(); 
        } 
       
        // Main Method 
        public static void main(String args[]) 
        { 
       
            // launch the application 
            launch(args); 
        } 
    }

    输出:

  2. Java程序来创建一个弹出窗口并将其添加到舞台上,并在弹出窗口失去焦点时自动隐藏该弹出窗口,方法是使用setAutoHide()函数:在此程序中,我们创建一个名为popup的Popup。弹出窗口包含一个名为label的Label。我们还创建一个名为button的Button并向其中添加事件处理程序,以显示弹出窗口(如果隐藏)。将按钮添加到TilePane,并将TilePane添加到场景,并将场景添加到舞台。调用show函数以显示结果。弹出窗口失去焦点时将自动隐藏,我们将使用setAutoHide()函数将此函数应用于弹出窗口。标签的背景颜色使用setStyle()函数设置,标签大小使用setMinHeight(),setMinWidth()函数设置。 hide()和show()函数用于隐藏或显示弹出窗口。
    // Java Program to create a popup and add 
    // it to the stage and make the popup hide 
    // automatically when it loses focus using 
    // the setAutoHide() function 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.Button; 
    import javafx.scene.layout.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.scene.control.Label; 
    import javafx.stage.Stage; 
    import javafx.stage.Popup; 
      
    public class popup_2 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            // set title for the stage 
            stage.setTitle("Creating Popup"); 
      
            // create a button 
            Button button = new Button("popup"); 
      
            // create a tile pane 
            TilePane tilepane = new TilePane(); 
      
            // create a label 
            Label label = new Label("This is a Popup"); 
      
            // create a popup 
            Popup popup = new Popup(); 
      
            // set background 
            label.setStyle(" -fx-background-color:white;"); 
      
            // add the label 
            popup.getContent().add(label); 
      
            // set size of label 
            label.setMinWidth(80); 
            label.setMinHeight(50); 
      
            // set auto hide 
            popup.setAutoHide(true); 
      
            // action event 
            EventHandler<ActionEvent> event =  
            new EventHandler<ActionEvent>() { 
                public void handle(ActionEvent e) 
                { 
                    if (!popup.isShowing()) 
                        popup.show(stage); 
                } 
            }; 
      
            // when button is pressed 
            button.setOnAction(event); 
      
            // add button 
            tilepane.getChildren().add(button); 
      
            // create a scene 
            Scene scene = new Scene(tilepane, 200, 200); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    输出:

注意:以上程序可能无法在在线IDE中运行。请使用离线编译器。

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/stage/Popup.html



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | Popup Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。