All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jfxtras.labs.scene.control.scheduler.skin.DragPane Maven / Gradle / Ivy

There is a newer version: 9.0-r1
Show newest version
package jfxtras.labs.scene.control.scheduler.skin;

import javafx.scene.layout.Pane;

/**
 * @author Tom Eugelink
 * @author Islam Khachmakhov
 */
public class DragPane extends Pane {

    DragPane(LayoutHelp layoutHelp) {
        prefWidthProperty().bind(layoutHelp.skinnable.widthProperty()); // the drag pane is the same size as the whole skin
        prefHeightProperty().bind(layoutHelp.skinnable.heightProperty());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy