Examples of CloseIcon


Examples of ca.nengo.ui.lib.world.piccolo.objects.icons.CloseIcon

      public void run() {
        myWindow.setWindowState(Window.WindowState.MINIMIZED);
      }
    });

    closeButton = new Button(new CloseIcon(BUTTON_SIZE), new Runnable() {
      public void run() {
        myWindow.close();
      }
    });
    buttonHolder = new WorldObjectImpl();
View Full Code Here

Examples of jfxtras.scene.control.window.CloseIcon

        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
Copyright © 2018 www.massapi.com. 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.