Examples of BackgroundImage


Examples of javafx.scene.layout.BackgroundImage

                            }
                        }
                        break;
                }
                if(image!=null){
                    fillFrame=new Background(new BackgroundImage(image,
                                            BackgroundRepeat.NO_REPEAT, BackgroundRepeat.NO_REPEAT,
                                            BackgroundPosition.CENTER, new BackgroundSize(width,height,false,false,false,true)));
                }
                resize();
            });
View Full Code Here

Examples of org.spoutcraft.launcher.skin.components.BackgroundImage

    setSize(FRAME_WIDTH, FRAME_HEIGHT);
    addMouseListener(this);
    addMouseMotionListener(this);
    setLocationRelativeTo(null);
    setResizable(false);
    getContentPane().add(new BackgroundImage(FRAME_WIDTH, FRAME_HEIGHT));
  }
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.