當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。