javafx.scene.layout.BorderPane.setPrefWidth()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中javafx.scene.layout.BorderPane.setPrefWidth()方法的一些代码示例,展示了BorderPane.setPrefWidth()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BorderPane.setPrefWidth()方法的具体详情如下:
包路径:javafx.scene.layout.BorderPane
类名称:BorderPane
方法名:setPrefWidth

BorderPane.setPrefWidth介绍

暂无

代码示例

代码示例来源:origin: stackoverflow.com

slider.setPrefWidth(0);

代码示例来源:origin: stackoverflow.com

BasicControl basicControl = new BasicControl();
BorderPane borderPane = new BorderPane();
borderPane.setPrefWidth(150);
borderPane.setCenter(basicControl);

代码示例来源:origin: nl.cloudfarming.client/calendar-api

hiddenPaneInner.setPrefWidth(HIDDEN_LIST_VIEW_HEIGHT);
hiddenPaneInner.setMinWidth(HIDDEN_LIST_VIEW_HEIGHT);

代码示例来源:origin: ch.sahits.game/OpenPatricianDisplay

centered.setPrefWidth(WRAPPING_WIDTH);
Pane pane = new Pane();
centered.setCenter(pane);

代码示例来源:origin: io.github.factoryfx/javafxDataEditing

Screen screen = Screen.getScreens().stream().filter(s->s.getBounds().contains(centerX,centerY)).findFirst().orElse(Screen.getPrimary());
Rectangle2D screenBounds = screen.getBounds();
pane.setPrefWidth(screenBounds.getWidth()/3);
pane.setPrefHeight(screenBounds.getHeight()/2);
dialog.getDialogPane().setContent(pane);

代码示例来源:origin: at.bestsolution.eclipse/org.eclipse.fx.text.ui

BorderPane p = new BorderPane();
p.setPrefHeight(200);
p.setPrefWidth(400);
this.stage.getScene().addEventFilter(KeyEvent.KEY_TYPED, this::handleKeyTyped);
this.stage.getScene().addEventFilter(KeyEvent.KEY_PRESSED, this::handleKeyPressed);

代码示例来源:origin: ch.sahits.game/OpenPatricianDisplay

centered.setPrefWidth(WRAPPING_WIDTH);
Pane pane = new Pane();
centered.setCenter(pane);

相关文章