当前位置: 首页>>代码示例>>Java>>正文


Java VBox.setLayoutY方法代码示例

本文整理汇总了Java中javafx.scene.layout.VBox.setLayoutY方法的典型用法代码示例。如果您正苦于以下问题:Java VBox.setLayoutY方法的具体用法?Java VBox.setLayoutY怎么用?Java VBox.setLayoutY使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javafx.scene.layout.VBox的用法示例。


在下文中一共展示了VBox.setLayoutY方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createRadioButtons

import javafx.scene.layout.VBox; //导入方法依赖的package包/类
private HBox createRadioButtons() {
    //creates a radio buttons, for each rectangle 2 buttons with action .toFront() and toBack()
    ToggleGroup tg = new ToggleGroup();
    
    VBox vBox1 = new VBox();
    vBox1.setSpacing(5);
    vBox1.setLayoutY(6);
    vBox1.getChildren().addAll(
            createRadioButton(rectA, "A.toFront()", true, tg),
            createRadioButton(rectB, "B.toFront()", true, tg),
            createRadioButton(rectC, "C.toFront()", true, tg)
            );

    VBox vBox2 = new VBox();
    vBox2.setSpacing(5);
    vBox2.setLayoutY(6);
    vBox2.getChildren().addAll(
            createRadioButton(rectA, "A.toBack()", false, tg),
            createRadioButton(rectB, "B.toBack()", false, tg),
            createRadioButton(rectC, "C.toBack()", false, tg)
            );

    HBox hBox = new HBox();
    hBox.setSpacing(10);
    hBox.getChildren().addAll(vBox1, vBox2);
    return hBox;
}
 
开发者ID:jalian-systems,项目名称:marathonv5,代码行数:28,代码来源:NodePropertiesSample.java

示例2: LosePresentation

import javafx.scene.layout.VBox; //导入方法依赖的package包/类
public LosePresentation(){
	vbButtons = new VBox(20);
	vbButtons.setLayoutY(200);
	vbButtons.setLayoutX(500);
	vbButtons.setSpacing(20);
	vbButtons.setPadding(new Insets(0, 20, 10, 20)); 

	vbTexts = new VBox(20);
	vbTexts.setLayoutY(20);
	vbButtons.setLayoutX(100);
	vbTexts.setSpacing(20);
	vbTexts.setPadding(new Insets(0, 20, 10, 20)); 
}
 
开发者ID:LtubSalad,项目名称:voogasalad-ltub,代码行数:14,代码来源:LosePresentation.java

示例3: WinPresentation

import javafx.scene.layout.VBox; //导入方法依赖的package包/类
public WinPresentation(){
	vbButtons = new VBox(20);
	vbButtons.setLayoutY(200);
	vbButtons.setLayoutX(500);
	vbButtons.setSpacing(20);
	vbButtons.setPadding(new Insets(0, 20, 10, 20)); 

	vbTexts = new VBox(20);
	vbTexts.setLayoutY(20);
	vbButtons.setLayoutX(100);
	vbTexts.setSpacing(20);
	vbTexts.setPadding(new Insets(0, 20, 10, 20)); 
}
 
开发者ID:LtubSalad,项目名称:voogasalad-ltub,代码行数:14,代码来源:WinPresentation.java

示例4: createScene

import javafx.scene.layout.VBox; //导入方法依赖的package包/类
private Scene createScene() {
		Group root = new Group();
		Scene scene = new Scene(root, App.WIDTH, App.HEIGHT);
		
		VBox vBox = new VBox();
		//borderPane.setCenter(vBox);
		root.getChildren().add(vBox);
		vBox.setLayoutX(250);
		vBox.setLayoutY(100);
//		vBox.getChildren().addAll(createPresetButtons());
		vBox.getChildren().add(createGameFileChooserButton());
		return scene;
	}
 
开发者ID:LtubSalad,项目名称:voogasalad-ltub,代码行数:14,代码来源:GameChooser.java

示例5: show

import javafx.scene.layout.VBox; //导入方法依赖的package包/类
public void show(){
	Group root = new Group();
	Scene scene = new Scene(root, WIDTH, HEIGHT);
	scene.getStylesheets().setAll("/styleSheets/login.css");
	Image backgroundImage = new Image(getClass().getClassLoader().getResourceAsStream(myResources.getString("loaderImagePath")));
	scene.setFill(new ImagePattern(backgroundImage));

	// Bind the timerLabel text property to the timeSeconds property
	timerLabel.textProperty().bind(timeSeconds.divide(100).asString());

	timerLabel.setId("label");

	ProgressBar progressBar = new ProgressBar();
	progressBar.progressProperty().bind(
			timeSeconds.divide(START_TIME*100.0).subtract(1).multiply(-1));

	timeSeconds.set((START_TIME)*100);
	timelineController();
	Label loadingLabel =new Label("Game loading ...");
	loadingLabel.setId("label");
	VBox vb = new VBox(20);     
	// center the components within VBox
	vb.setAlignment(Pos.CENTER);        
	vb.setPrefWidth(scene.getWidth());
	vb.setLayoutY(60);
	vb.getChildren().addAll( timerLabel, progressBar, loadingLabel);

	root.getChildren().add(vb);
	scene.getStylesheets().setAll(CSS_LOCATION);
	primaryStage.setScene(scene);
	primaryStage.show();
}
 
开发者ID:LtubSalad,项目名称:voogasalad-ltub,代码行数:33,代码来源:Loader.java


注:本文中的javafx.scene.layout.VBox.setLayoutY方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。