码迷,mamicode.com
首页 > 移动开发 > 详细

JavaFX的窗体为“StageStyle.UNDECORATED”时,如何使用鼠标移动窗体

时间:2020-05-05 23:31:19      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:and   隐藏   title   start   tst   protected   input   content   function   

如题,因为“StageStyle.UNDECORATED”将会title bar隐藏,用户无法使用鼠标移动窗体。需要通过增加鼠标的“Pressed”、“Dragged”事件处理获取鼠标信息来移动窗体。具体代码如下。

/**
 * @package ch04
 * @date 2020/5/5
 * @author qiaowei
 * @version 1.0
 * @description
 */

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.stage.StageStyle;

public class DraggingStage extends Application {

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

    @Override
    public void start(Stage primaryStage) {
        // Store the stage reference in the instance variable to
        // use it in the mouse pressed event handler later.
        this.stage = primaryStage;
        
        Label msgLabel = new Label("Press the mouse button and drag.");
        
        Button closeButton = new Button("Close");
//        closeButton.setOnAction(e -> stage.close());
        closeButton.setOnAction(e -> primaryStage.close());
        
        VBox root = new VBox();
        root.getChildren().addAll(msgLabel, closeButton);
        
        Scene scene = new Scene(root, 300, 200);
        // Set mouse pressed and dragged even handlers for the scene
        scene.setOnMousePressed(e -> handleMousePressed(e));
        scene.setOnMouseDragged(e -> handleMouseDragged(e));
        
        stage.setScene(scene);
        stage.setTitle("Moving a Stage");
        stage.initStyle(StageStyle.UNDECORATED);
        stage.show();
    }

    protected void handleMousePressed(MouseEvent e) {
        // Store the mouse x and y coordinates with respect to the
        // stage in the reference variables to use them in the drag event
        this.dragOffsetX = e.getScreenX() - stage.getX();
        this.dragOffsetY = e.getScreenY() - stage.getY();
    }
    
    protected void handleMouseDragged(MouseEvent e) {
        // Move the stage by the drag amount
        stage.setX(e.getScreenX() - this.dragOffsetX);
        stage.setY(e.getScreenY() - this.dragOffsetY);
    }

    private Stage stage;
    private double dragOffsetX;
    private double dragOffsetY;
}

 

JavaFX的窗体为“StageStyle.UNDECORATED”时,如何使用鼠标移动窗体

标签:and   隐藏   title   start   tst   protected   input   content   function   

原文地址:https://www.cnblogs.com/vwvwvwgwg/p/12833364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!