Package jfxtras.scene.control.window

Examples of jfxtras.scene.control.window.MinimizeIcon


        // creates a pane that contains one window
        pane = new Pane();
        pane.setPrefSize(1024, 768);
        window = new Window("Window Title");
        window.setId("window-control-1");
        minimizeIcon = new MinimizeIcon(window);
        closeIcon = new CloseIcon(window);
        window.getLeftIcons().addAll(closeIcon, minimizeIcon);
        window.setPrefSize(600, 400);
        window.setLayoutX(100);
        window.setLayoutY(100);
View Full Code Here

TOP

Related Classes of jfxtras.scene.control.window.MinimizeIcon

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.