本文整理了Java中javafx.scene.control.Label.setLayoutY()
方法的一些代码示例,展示了Label.setLayoutY()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Label.setLayoutY()
方法的具体详情如下:
包路径:javafx.scene.control.Label
类名称:Label
方法名:setLayoutY
暂无
代码示例来源:origin: jfoenixadmin/JFoenix
@Override
public void start(Stage stage) {
Pane root = new Pane();
for(int i = 0 ;i < 4000; i++) {
Label child = new Label("label" + i);
child.setLayoutX(Math.random() * 500 + 100);
child.setLayoutY(Math.random() * 500+ 100);
root.getChildren().add(child);
}
root.getChildren().add(build());
FPSDecorator decorator = new FPSDecorator(stage, root);
final Scene scene = new Scene(decorator, 800, 800);
stage.setScene(scene);
stage.setResizable(true);
stage.show();
afterShow(stage);
}
代码示例来源:origin: com.nexitia.emaginplatform/emagin-jfxcore-engine
/**
* Constructor
*/
public NavigationBar() {
super();
IconUtils.setHeaderNavigationBack(backIcon);
backIcon.getStyleClass().addAll("transparent-focus", "empty-padding", "scale-down-on-click");
backIcon.setOnAction(e -> goBack());
pane.getChildren().addAll(location0, location1, backIcon);
getChildren().add(pane);
NodeHelper.setHVGrow(pane);
getStyleClass().add("ep-header-center-area-nav-bar-container");
location0.getStyleClass().add("previous-location-item-label");
location1.getStyleClass().add("current-location-item-label");
backIcon.setLayoutX(16);
backIcon.setLayoutY(15);
location0.setLayoutX(46);
location0.setLayoutY(18);
location1.setLayoutX(22);
location1.setLayoutY(65);
}
代码示例来源:origin: nl.cloudfarming.client/calendar-api
double visibleWidth = getVisibleWidth();
double x = 0;
label.setLayoutY(3);
label.setText(title);
if (visibleWidth > label.getWidth() + TITLE_LABEL_INDENT) {
expandedStateLabel.setLayoutY(y);
代码示例来源:origin: ch.sahits.game/OpenPatricianDisplay
cashTxt.textProperty().addListener(cashChangeListener);
time.setLayoutY(-8);
time.setLayoutX(ph.getWidth() - spacing - 32);
dateTxt.setLayoutX(time.getLayoutX() - spacing - dateTxt.getBoundsInLocal().getWidth());
代码示例来源:origin: ch.sahits.game/OpenPatricianJavaFX
titleBackground.setLayoutX((frame.getWidth() - titleWidth)/2);
titleBackground.setLayoutY(35);
title.setLayoutY(47);
内容来源于网络,如有侵权,请联系作者删除!