package ch04;
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 {
private Stage stage;
// 點擊鼠標時的x坐標值
private double dragOffsetX;
// 點擊鼠標時的y坐標值
private double dragOffsetY;
public static void main(String[] args) {
Application.launch(DraggingStage.class, 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 lambda of mouse pressed and dragged even handlers for the scene
scene.setOnMousePressed((ev) -> handleMousePressed(ev));
// scene.setOnMousePressed(this::handleMousePressed(e));
scene.setOnMouseDragged(e -> handleMouseDragged(e));
stage.setScene(scene);
stage.setTitle("Moving a Stage");
stage.initStyle(StageStyle.UNDECORATED);
stage.show();
}
/**
@class DraggingStage
@date 2020/5/24
@author qiaowei
@version 1.0
@brief 點擊鼠標時觸發事件
@param e 鼠標事件
*/
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);
}
}
//參:https://blog.csdn.net/weixin_34695463/article/details/114729954