- java.lang.Object
-
- javafx.scene.Node
-
- javafx.scene.Parent
-
- javafx.scene.layout.Region
-
- javafx.scene.layout.Pane
-
- javafx.scene.layout.TilePane
-
- All Implemented Interfaces:
-
Styleable
,EventTarget
public class TilePane extends Pane
TilePane将其孩子们放在一个大小均匀的“瓷砖”网格中。水平tilepane(默认)将以行的方式平铺节点,以瓦片宽度包装。 垂直tilepane将在列中平铺节点,以tilepane的高度包装。
每个“瓷砖”的大小默认为涵盖瓦楞纸板儿童的最大优选宽度和高度所需的大小,并且瓦楞纸板将根据需要重新计算拼贴块的大小,以便在更改时适应其子代的最大优选大小。 应用程序还可以通过将prefTileWidth / prefTileHeight属性设置为除USE_COMPUTED_SIZE(默认值)之外的值来直接控制瓦片的大小。
应用程序应初始化
prefColumns
(水平)或prefRows
(垂直),以建立tilepane的首选大小(任意默认值为5)。 请注意,prefColumns / prefRows仅用于计算首选大小,可能不反映实际的行数或列数,这可能会随着tilepane的大小调整而改变,并且tile将以实际边界包装。对齐属性控制行和列如何在tilepane的边界内对齐,并且默认为Pos.TOP_LEFT。 还可以通过设置
tileAlignment
来控制各个图块中的节点对齐,默认为Pos.CENTER。水平tilepane示例:
TilePane tile = new TilePane(); tile.setHgap(8); tile.setPrefColumns(4); for (int i = 0; i < 20; i++) { tile.getChildren().add(new ImageView(...)); }
垂直TilePane示例:
TilePane tile = new TilePane(Orientation.VERTICAL); tile.setTileAlignment(Pos.CENTER_LEFT); tile.setPrefRows(10); for (int i = 0; i < 50; i++) { tile.getChildren().add(new ImageView(...)); }
可调整范围
tilepane的父级将在布局期间在tilepane的可调整大小的范围内调整tilepane的大小。 默认情况下,tilepane将基于其内容计算此范围,如下表所示。
Horizontal width height minimum left/right insets plus the tile width. top/bottom insets plus height required to display all tiles when wrapped at a specified width with a vgap between each row. preferred left/right insets plus prefColumns multiplied by the tile width. top/bottom insets plus height required to display all tiles when wrapped at a specified width with a vgap between each row. maximum Double.MAX_VALUE Double.MAX_VALUE
Vertical width height minimum left/right insets plus width required to display all tiles when wrapped at a specified height with an hgap between each column. top/bottom insets plus the tile height. preferred left/right insets plus width required to display all tiles when wrapped at the specified height with an hgap between each column. top/bottom insets plus prefRows multiplied by the tile height. maximum Double.MAX_VALUE Double.MAX_VALUE瓦楞纸板的无界最大宽度和高度是对父母的指示,它可以调整大小超出其首选尺寸,以填充分配给它的任何空间。
TilePane提供了直接设置尺寸范围的属性。 这些属性默认为哨兵值Region.USE_COMPUTED_SIZE,但是应用程序可能会根据需要将它们设置为其他值:
<b>tilepane.setMaxWidth(500);</b>
默认情况下,TilePane不会剪切其内容,因此如果孩子的pref大小阻止其贴合在其图块中,则儿童的边界可能会延伸到图块之外(也可能是tilepane边界)。 另外,如果tilepane的大小小于其首选大小,则可能无法将所有的tile都放在其边界内,并且内容将在外部扩展。
可选布局限制
应用程序可以设置对各个孩子的约束,以自定义TilePane的布局。 对于每个约束,TilePane提供了一种静态方法,用于在孩子上设置它。
TilePane Constraint Table Constraint Type Description alignment javafx.geometry.Pos The alignment of the child within its tile. margin javafx.geometry.Insets Margin space around the outside of the child.例:
TilePane tilepane = new TilePane(); for (int i = 0; i < 20; i++) { Label title = new Label(imageTitle[i]): Imageview imageview = new ImageView(new Image(imageName[i])); TilePane.setAlignment(label, Pos.BOTTOM_RIGHT); tilepane.getChildren().addAll(title, imageview); }
- 从以下版本开始:
- JavaFX 2.0
-
-
Property Summary
Properties Type Property 描述 ObjectProperty<Pos>
alignment
瓦楞纸板内容在其宽度和高度之间的整体对齐。DoubleProperty
hgap
一行中每个图块之间的水平空间量。ObjectProperty<Orientation>
orientation
这个瓦片的方向。IntegerProperty
prefColumns
水平瓦片的首选列数。IntegerProperty
prefRows
垂直瓦片的首选行数。DoubleProperty
prefTileHeight
每个瓷砖的首选高度。DoubleProperty
prefTileWidth
每个瓷砖的首选宽度。ObjectProperty<Pos>
tileAlignment
每个孩子在其图块中的默认对齐方式。ReadOnlyDoubleProperty
tileHeight
每个瓷砖的实际高度。ReadOnlyDoubleProperty
tileWidth
每个瓷砖的实际宽度。DoubleProperty
vgap
列中每个图块之间的垂直空间量。-
Properties inherited from class javafx.scene.Node
accessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, viewOrder, visible
-
Properties inherited from class javafx.scene.Parent
needsLayout
-
Properties inherited from class javafx.scene.layout.Region
background, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, width
-
-
Field Summary
-
Fields inherited from class javafx.scene.Node
BASELINE_OFFSET_SAME_AS_HEIGHT
-
Fields inherited from class javafx.scene.layout.Region
USE_COMPUTED_SIZE, USE_PREF_SIZE
-
-
构造方法摘要
构造方法 Constructor 描述 TilePane()
创建一个水平的TilePane布局,其中prefColumn = 5和hgap / vgap = 0。TilePane(double hgap, double vgap)
创建一个水平的TilePane布局,其中prefColumn = 5和指定的hgap / vgap。TilePane(double hgap, double vgap, Node... children)
创建一个水平的TilePane布局,其中prefColumn = 5和指定的hgap / vgap。TilePane(Orientation orientation)
创建具有指定方向的TilePane布局,prefColumn / prefRows = 5和hgap / vgap = 0。TilePane(Orientation orientation, double hgap, double vgap)
使用指定的方向hgap / vgap和prefRows / prefColumns = 5创建TilePane布局。TilePane(Orientation orientation, double hgap, double vgap, Node... children)
使用指定的方向hgap / vgap和prefRows / prefColumns = 5创建TilePane布局。TilePane(Orientation orientation, Node... children)
创建具有指定方向的TilePane布局,prefColumn / prefRows = 5和hgap / vgap = 0。TilePane(Node... children)
创建一个水平的TilePane布局,其中prefColumn = 5和hgap / vgap = 0。
-
方法摘要
所有方法 静态方法 接口方法 具体的方法 Modifier and Type 方法 描述 ObjectProperty<Pos>
alignmentProperty()
瓦楞纸板内容在其宽度和高度之间的整体对齐。static void
clearConstraints(Node child)
从子节点中删除所有瓦楞纸板约束。protected double
computeMinHeight(double width)
计算该区域的最小高度。protected double
computeMinWidth(double height)
计算该区域的最小宽度。protected double
computePrefHeight(double forWidth)
计算给定宽度的该区域的首选高度; 区域子类应该覆盖此方法,以根据其内容和布局策略返回适当的值。protected double
computePrefWidth(double forHeight)
计算给定高度的该区域的首选宽度。Pos
getAlignment()
获取属性对齐的值。static Pos
getAlignment(Node node)
如果设置,返回小孩的对齐约束。static List<CssMetaData<? extends Styleable,?>>
getClassCssMetaData()
Orientation
getContentBias()
返回节点调整大小偏置的方向以进行布局。List<CssMetaData<? extends Styleable,?>>
getCssMetaData()
该方法应该委托给Node.getClassCssMetaData()
,以便可以访问节点的CssMetaData而不需要反射。double
getHgap()
获取属性hgap的值。static Insets
getMargin(Node node)
如果设置,返回小孩的边距约束。Orientation
getOrientation()
获取属性方向的值。int
getPrefColumns()
获取属性prefColumns的值。int
getPrefRows()
获取属性prefRows的值。double
getPrefTileHeight()
获取属性prefTileHeight的值。double
getPrefTileWidth()
获取属性prefTileWidth的值。Pos
getTileAlignment()
获取属性tileAlignment的值。double
getTileHeight()
获取属性tileHeight的值。double
getTileWidth()
获取属性tileWidth的值。double
getVgap()
获取属性vgap的值。DoubleProperty
hgapProperty()
一行中每个图块之间的水平空间量。protected void
layoutChildren()
在布局传递期间调用这个Parent
来布局孩子。ObjectProperty<Orientation>
orientationProperty()
这个瓦片的方向。IntegerProperty
prefColumnsProperty()
水平瓦片的首选列数。IntegerProperty
prefRowsProperty()
垂直瓦片的首选行数。DoubleProperty
prefTileHeightProperty()
每个瓷砖的首选高度。DoubleProperty
prefTileWidthProperty()
每个瓷砖的首选宽度。void
requestLayout()
请求在渲染下一个场景之前执行布局传递。void
setAlignment(Pos value)
设置属性对齐的值。static void
setAlignment(Node node, Pos value)
设置小屋的对齐方式,包含在tilepane中。void
setHgap(double value)
设置属性hgap的值。static void
setMargin(Node node, Insets value)
设置小孩的边框,当包含一个瓦楞纸板时。void
setOrientation(Orientation value)
设置属性方向的值。void
setPrefColumns(int value)
设置属性prefColumns的值。void
setPrefRows(int value)
设置属性prefRows的值。void
setPrefTileHeight(double value)
设置属性prefTileHeight的值。void
setPrefTileWidth(double value)
设置属性prefTileWidth的值。void
setTileAlignment(Pos value)
设置属性tileAlignment的值。void
setVgap(double value)
设置属性vgap的值。ObjectProperty<Pos>
tileAlignmentProperty()
每个孩子在其图块中的默认对齐方式。ReadOnlyDoubleProperty
tileHeightProperty()
每个瓷砖的实际高度。ReadOnlyDoubleProperty
tileWidthProperty()
每个瓷砖的实际宽度。DoubleProperty
vgapProperty()
列中每个图块之间的垂直空间量。-
Methods inherited from class javafx.scene.Node
accessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, executeAccessibleAction, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInitialCursor, getInitialFocusTraversable, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, getViewOrder, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setViewOrder, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, toString, translateXProperty, translateYProperty, translateZProperty, usesMirroring, viewOrderProperty, visibleProperty
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javafx.scene.layout.Pane
getChildren
-
Methods inherited from class javafx.scene.Parent
getBaselineOffset, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, queryAccessibleAttribute, requestParentLayout, setNeedsLayout, updateBounds
-
Methods inherited from class javafx.scene.layout.Region
backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, computeMaxHeight, computeMaxWidth, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getUserAgentStylesheet, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isResizable, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, snapToPixelProperty, widthProperty
-
Methods inherited from interface javafx.css.Styleable
getStyleableNode
-
-
-
-
Property Detail
-
orientation
public final ObjectProperty<Orientation> orientationProperty
这个瓦片的方向。 一个水平的瓦楞纸板将瓷砖中的孩子从左到右放置在瓦楞纸板的宽度边界处。 垂直的瓦楞纸板将儿童放在瓷砖中,从上到下,包裹在瓦砾的高度。 默认为水平。
-
prefRows
public final IntegerProperty prefRowsProperty
垂直瓦片的首选行数。 该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。 对于水平瓦片,忽略此属性。建议应用程序初始化此值作为垂直瓦片。
- 另请参见:
-
getPrefRows()
,setPrefRows(int)
-
prefColumns
public final IntegerProperty prefColumnsProperty
水平瓦片的首选列数。 该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。 对于垂直图块,忽略此属性。建议应用程序为水平瓦片初始化此值。
- 另请参见:
-
getPrefColumns()
,setPrefColumns(int)
-
prefTileWidth
public final DoubleProperty prefTileWidthProperty
每个瓷砖的首选宽度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改以适应最宽的孩子时,tile tile将自动重新计算瓦片宽度wlll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该宽度,并且tilepane将尝试调整小孩大小以适应该宽度(如果它们可调整大小,并且最小 - 最大宽度范围允许)。
-
prefTileHeight
public final DoubleProperty prefTileHeightProperty
每个瓷砖的首选高度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改为容纳最高的孩子时,tile tile会自动重新计算瓦片高度wll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该高度,并且tilepane将尝试调整儿童大小以适应该高度(如果它们可调整大小,并且其最小 - 最大高度范围允许)。
-
tileWidth
public final ReadOnlyDoubleProperty tileWidthProperty
每个瓷砖的实际宽度。 此属性为只读。- 另请参见:
-
getTileWidth()
-
tileHeight
public final ReadOnlyDoubleProperty tileHeightProperty
每个瓷砖的实际高度。 此属性为只读。- 另请参见:
-
getTileHeight()
-
hgap
public final DoubleProperty hgapProperty
一行中每个图块之间的水平空间量。- 另请参见:
-
getHgap()
,setHgap(double)
-
vgap
public final DoubleProperty vgapProperty
列中每个图块之间的垂直空间量。- 另请参见:
-
getVgap()
,setVgap(double)
-
alignment
public final ObjectProperty<Pos> alignmentProperty
瓦楞纸板内容在其宽度和高度之间的整体对齐。对于水平瓦片,每行将使用对齐方式的hpos值在tilepane的宽度内对齐,并使用对齐方式的vpos值在各个tilepane的高度内对齐行。
对于垂直瓦片,每列将使用对齐的vpos值在tilepane的高度内对齐,并且列将使用对齐的hpos值在tilepane的宽度内对齐。
- 另请参见:
-
getAlignment()
,setAlignment(Pos)
-
tileAlignment
public final ObjectProperty<Pos> tileAlignmentProperty
每个孩子在其图块中的默认对齐方式。 这可以通过设置孩子的对齐约束来覆盖个别孩子。
-
-
构造方法详细信息
-
TilePane
public TilePane()
创建一个水平的TilePane布局,其中prefColumn = 5和hgap / vgap = 0。
-
TilePane
public TilePane(Orientation orientation)
创建具有指定方向的TilePane布局,prefColumn / prefRows = 5和hgap / vgap = 0。- 参数
-
orientation
- 瓦片应该流动和包裹的方向
-
TilePane
public TilePane(double hgap, double vgap)
创建一个水平的TilePane布局,其中prefColumn = 5和指定的hgap / vgap。- 参数
-
hgap
- 每个图块之间的水平空间量 -
vgap
- 每个图块之间的垂直空间量
-
TilePane
public TilePane(Orientation orientation, double hgap, double vgap)
使用指定的方向hgap / vgap和prefRows / prefColumns = 5创建TilePane布局。- 参数
-
orientation
- 瓦片应该流动和包裹的方向 -
hgap
- 每个图块之间的水平空间量 -
vgap
- 每个图块之间的垂直空间量
-
TilePane
public TilePane(Node... children)
创建一个水平的TilePane布局,其中prefColumn = 5和hgap / vgap = 0。- 参数
-
children
- 此窗格的初始子项集。 - 从以下版本开始:
- JavaFX 8.0
-
TilePane
public TilePane(Orientation orientation, Node... children)
创建具有指定方向的TilePane布局,prefColumn / prefRows = 5和hgap / vgap = 0。- 参数
-
orientation
- 瓦片应该流动和包裹的方向 -
children
- 此窗格的初始子项集。 - 从以下版本开始:
- JavaFX 8.0
-
TilePane
public TilePane(double hgap, double vgap, Node... children)
创建一个水平的TilePane布局,其中prefColumn = 5和指定的hgap / vgap。- 参数
-
hgap
- 每个图块之间的水平空间量 -
vgap
- 每个图块之间的垂直空间量 -
children
- 此窗格的初始子项集。 - 从以下版本开始:
- JavaFX 8.0
-
TilePane
public TilePane(Orientation orientation, double hgap, double vgap, Node... children)
使用指定的方向hgap / vgap和prefRows / prefColumns = 5创建TilePane布局。- 参数
-
orientation
- 瓦片应该流动和包裹的方向 -
hgap
- 每个图块之间的水平空间量 -
vgap
- 每个图块之间的垂直空间量 -
children
- 此窗格的初始子项集。 - 从以下版本开始:
- JavaFX 8.0
-
-
方法详细信息
-
setAlignment
public static void setAlignment(Node node, Pos value)
设置小屋的对齐方式,包含在tilepane中。 如果设置,将覆盖其“tile”中的小孩的tilepane的默认对齐方式。 将值设置为null将删除约束。- 参数
-
node
-node
的子节点 -
value
- 孩子的对齐位置
-
getAlignment
public static Pos getAlignment(Node node)
如果设置,返回小孩的对齐约束。- 参数
-
node
-node
的子节点 - 结果
- 小孩的对齐位置,如果没有设置对齐,则为空
-
setMargin
public static void setMargin(Node node, Insets value)
设置小孩的边框,当包含一个瓦楞纸板时。 如果设置,tilepane将布局孩子周围的边距空间。 将值设置为null将删除约束。- 参数
-
node
-node
的子节点 -
value
- 孩子周围的空间
-
getMargin
public static Insets getMargin(Node node)
如果设置,返回小孩的边距约束。- 参数
-
node
-node
的子节点 - 结果
- 小孩的保证金,如果没有设置保证金,则为null
-
clearConstraints
public static void clearConstraints(Node child)
从子节点中删除所有瓦楞纸板约束。- 参数
-
child
- 子节点
-
orientationProperty
public final ObjectProperty<Orientation> orientationProperty()
这个瓦片的方向。 一个水平的瓦楞纸板将瓷砖中的孩子从左到右放置在瓦楞纸板的宽度边界处。 垂直的瓦楞纸板将儿童放在瓷砖中,从上到下,包裹在瓦砾的高度。 默认为水平。
-
setOrientation
public final void setOrientation(Orientation value)
设置属性方向的值。- Property description:
- 这个瓦片的方向。 一个水平的瓦楞纸板将瓷砖中的孩子从左到右放置在瓦楞纸板的宽度边界处。 垂直的瓦楞纸板将儿童放在瓷砖中,从上到下,包裹在瓦砾的高度。 默认为水平。
-
getOrientation
public final Orientation getOrientation()
获取属性方向的值。- Property description:
- 这个瓦片的方向。 一个水平的瓦楞纸板将瓷砖中的孩子从左到右放置在瓦楞纸板的宽度边界处。 垂直的瓦楞纸板将儿童放在瓷砖中,从上到下,包裹在瓦砾的高度。 默认为水平。
-
prefRowsProperty
public final IntegerProperty prefRowsProperty()
垂直瓦片的首选行数。 该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。 对于水平瓦片,忽略此属性。建议应用程序初始化此值作为垂直瓦片。
- 另请参见:
-
getPrefRows()
,setPrefRows(int)
-
setPrefRows
public final void setPrefRows(int value)
设置属性prefRows的值。- Property description:
-
垂直瓦片的首选行数。
该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。
对于水平瓦片,忽略此属性。
建议应用程序初始化此值作为垂直瓦片。
-
getPrefRows
public final int getPrefRows()
获取属性prefRows的值。- Property description:
-
垂直瓦片的首选行数。
该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。
对于水平瓦片,忽略此属性。
建议应用程序初始化此值作为垂直瓦片。
-
prefColumnsProperty
public final IntegerProperty prefColumnsProperty()
水平瓦片的首选列数。 该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。 对于垂直图块,忽略此属性。建议应用程序为水平瓦片初始化此值。
- 另请参见:
-
getPrefColumns()
,setPrefColumns(int)
-
setPrefColumns
public final void setPrefColumns(int value)
设置属性prefColumns的值。- Property description:
-
水平瓦片的首选列数。
该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。
对于垂直图块,忽略此属性。
建议应用程序为水平瓦片初始化此值。
-
getPrefColumns
public final int getPrefColumns()
获取属性prefColumns的值。- Property description:
-
水平瓦片的首选列数。
该值仅用于计算瓦楞纸板的首选尺寸,并且可能不反映实际的行数,如果将tilepane调整为除其首选高度之外的其他值,则可能会改变。
对于垂直图块,忽略此属性。
建议应用程序为水平瓦片初始化此值。
-
prefTileWidthProperty
public final DoubleProperty prefTileWidthProperty()
每个瓷砖的首选宽度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改以适应最宽的孩子时,tile tile将自动重新计算瓦片宽度wlll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该宽度,并且tilepane将尝试调整小孩大小以适应该宽度(如果它们可调整大小,并且最小 - 最大宽度范围允许)。
-
setPrefTileWidth
public final void setPrefTileWidth(double value)
设置属性prefTileWidth的值。- Property description:
- 每个瓷砖的首选宽度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改以适应最宽的孩子时,tile tile将自动重新计算瓦片宽度wlll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该宽度,并且tilepane将尝试调整小孩大小以适应该宽度(如果它们可调整大小,并且最小 - 最大宽度范围允许)。
-
getPrefTileWidth
public final double getPrefTileWidth()
获取属性prefTileWidth的值。- Property description:
- 每个瓷砖的首选宽度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改以适应最宽的孩子时,tile tile将自动重新计算瓦片宽度wlll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该宽度,并且tilepane将尝试调整小孩大小以适应该宽度(如果它们可调整大小,并且最小 - 最大宽度范围允许)。
-
prefTileHeightProperty
public final DoubleProperty prefTileHeightProperty()
每个瓷砖的首选高度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改为容纳最高的孩子时,tile tile会自动重新计算瓦片高度wll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该高度,并且tilepane将尝试调整儿童大小以适应该高度(如果它们可调整大小,并且其最小 - 最大高度范围允许)。
-
setPrefTileHeight
public final void setPrefTileHeight(double value)
设置属性prefTileHeight的值。- Property description:
- 每个瓷砖的首选高度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改为容纳最高的孩子时,tile tile会自动重新计算瓦片高度wll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该高度,并且tilepane将尝试调整儿童大小以适应该高度(如果它们可调整大小,并且其最小 - 最大高度范围允许)。
-
getPrefTileHeight
public final double getPrefTileHeight()
获取属性prefTileHeight的值。- Property description:
- 每个瓷砖的首选高度。 如果等于USE_COMPUTED_SIZE(默认值),当儿童的首选大小更改为容纳最高的孩子时,tile tile会自动重新计算瓦片高度wll。 如果应用程序将此属性设置为大于0的值,则tile将被设置为该高度,并且tilepane将尝试调整儿童大小以适应该高度(如果它们可调整大小,并且其最小 - 最大高度范围允许)。
-
tileWidthProperty
public final ReadOnlyDoubleProperty tileWidthProperty()
每个瓷砖的实际宽度。 此属性为只读。- 另请参见:
-
getTileWidth()
-
getTileWidth
public final double getTileWidth()
获取属性tileWidth的值。- Property description:
- 每个瓷砖的实际宽度。 此属性为只读。
-
tileHeightProperty
public final ReadOnlyDoubleProperty tileHeightProperty()
每个瓷砖的实际高度。 此属性为只读。- 另请参见:
-
getTileHeight()
-
getTileHeight
public final double getTileHeight()
获取属性tileHeight的值。- Property description:
- 每个瓷砖的实际高度。 此属性为只读。
-
hgapProperty
public final DoubleProperty hgapProperty()
一行中每个图块之间的水平空间量。- 另请参见:
-
getHgap()
,setHgap(double)
-
setHgap
public final void setHgap(double value)
设置属性hgap的值。- Property description:
- 一行中每个图块之间的水平空间量。
-
getHgap
public final double getHgap()
获取属性hgap的值。- Property description:
- 一行中每个图块之间的水平空间量。
-
vgapProperty
public final DoubleProperty vgapProperty()
列中每个图块之间的垂直空间量。- 另请参见:
-
getVgap()
,setVgap(double)
-
setVgap
public final void setVgap(double value)
设置属性vgap的值。- Property description:
- 列中每个图块之间的垂直空间量。
-
getVgap
public final double getVgap()
获取属性vgap的值。- Property description:
- 列中每个图块之间的垂直空间量。
-
alignmentProperty
public final ObjectProperty<Pos> alignmentProperty()
瓦楞纸板内容在其宽度和高度之间的整体对齐。对于水平瓦片,每行将使用对齐方式的hpos值在tilepane的宽度内对齐,并使用对齐方式的vpos值在各个tilepane的高度内对齐行。
对于垂直瓦片,每列将使用对齐的vpos值在tilepane的高度内对齐,并且列将使用对齐的hpos值在tilepane的宽度内对齐。
- 另请参见:
-
getAlignment()
,setAlignment(Pos)
-
setAlignment
public final void setAlignment(Pos value)
设置属性对齐的值。- Property description:
-
瓦楞纸板内容在其宽度和高度之间的整体对齐。
对于水平瓦片,每行将使用对齐方式的hpos值在tilepane的宽度内对齐,并使用对齐方式的vpos值在各个tilepane的高度内对齐行。
对于垂直瓦片,每列将使用对齐的vpos值在tilepane的高度内对齐,并且列将使用对齐的hpos值在tilepane的宽度内对齐。
-
getAlignment
public final Pos getAlignment()
获取属性对齐的值。- Property description:
-
瓦楞纸板内容在其宽度和高度之间的整体对齐。
对于水平瓦片,每行将使用对齐方式的hpos值在tilepane的宽度内对齐,并使用对齐方式的vpos值在各个tilepane的高度内对齐行。
对于垂直瓦片,每列将使用对齐的vpos值在tilepane的高度内对齐,并且列将使用对齐的hpos值在tilepane的宽度内对齐。
-
tileAlignmentProperty
public final ObjectProperty<Pos> tileAlignmentProperty()
每个孩子在其图块中的默认对齐方式。 这可以通过设置孩子的对齐约束来覆盖个别孩子。
-
setTileAlignment
public final void setTileAlignment(Pos value)
设置属性tileAlignment的值。- Property description:
- 每个孩子在其图块中的默认对齐方式。 这可以通过设置孩子的对齐约束来覆盖个别孩子。
-
getTileAlignment
public final Pos getTileAlignment()
获取属性tileAlignment的值。- Property description:
- 每个孩子在其图块中的默认对齐方式。 这可以通过设置孩子的对齐约束来覆盖个别孩子。
-
getContentBias
public Orientation getContentBias()
描述从类复制:Node
返回节点调整大小偏置的方向以进行布局。 如果节点类型没有偏差,则返回null。 如果节点可调整大小,并且其高度取决于其宽度,则返回HORIZONTAL,否则如果其宽度取决于其高度,则返回VERTICAL。可调整大小的子类应该覆盖此方法以返回适当的值。
- 重写:
-
getContentBias
在Node
- 结果
- width / height依赖的方向,如果没有则为null
- 另请参见:
-
Node.isResizable()
,Node.minWidth(double)
,Node.minHeight(double)
,Node.prefWidth(double)
,Node.prefHeight(double)
,Node.maxWidth(double)
,Node.maxHeight(double)
-
requestLayout
public void requestLayout()
描述从类复制:Parent
请求在渲染下一个场景之前执行布局传递。 这是异步批量发生一次“脉冲”或动画帧。如果此父对象是布局根或非托管,则将直接添加到场景的脏布局列表中,否则将调用requestParentLayout。
- 重写:
-
requestLayout
在Parent
-
computeMinWidth
protected double computeMinWidth(double height)
描述从类复制:Region
计算该区域的最小宽度。 默认情况下返回左和右插入的总和。 区域子类应该覆盖此方法,以根据其内容和布局策略返回适当的值。 如果子类没有VERTICAL内容偏差,则可以忽略height参数。- 重写:
-
computeMinWidth
在Region
- 参数
-
height
- 如果最小宽度取决于它应该使用的高度 - 结果
- 计算出该区域的最小宽度
-
computeMinHeight
protected double computeMinHeight(double width)
描述从类复制:Region
计算该区域的最小高度。 默认返回顶部和底部插入的总和。 区域子类应该覆盖此方法,以根据其内容和布局策略返回适当的值。 如果子类没有HORIZONTAL内容偏差,则可以忽略width参数。- 重写:
-
computeMinHeight
在Region
- 参数
-
width
- 如果最小高度取决于它应该使用的宽度 - 结果
- 计算该区域的最小高度
-
computePrefWidth
protected double computePrefWidth(double forHeight)
描述从类:Region
复制计算给定高度的该区域的首选宽度。 区域子类应该覆盖此方法,以根据其内容和布局策略返回适当的值。 如果子类没有VERTICAL内容偏差,则可以忽略height参数。- 重写:
-
computePrefWidth
在Region
- 参数
-
forHeight
- 如果首选宽度取决于应该使用的高度 - 结果
- 计算这个区域的首选宽度
-
computePrefHeight
protected double computePrefHeight(double forWidth)
描述从类别复制:Region
计算给定宽度的该区域的首选高度; 区域子类应该覆盖此方法,以根据其内容和布局策略返回适当的值。 如果子类没有HORIZONTAL内容偏差,则可以忽略width参数。- 重写:
-
computePrefHeight
在Region
- 参数
-
forWidth
- 如果首选高度取决于应该使用的宽度 - 结果
- 该区域计算的优选高度
-
layoutChildren
protected void layoutChildren()
描述从类复制:Parent
在布局传递过程中调用这个Parent
的孩子。 默认情况下,它只会将受管理的可调整大小的内容的大小设置为其首选大小,并且不会执行任何节点定位。子类应该根据需要重写此函数以布局内容。
- 重写:
-
layoutChildren
在Parent
-
getClassCssMetaData
public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
- 结果
- 与此类相关联的CssMetaData可能包括其类的CssMetaData。
- 从以下版本开始:
- JavaFX 8.0
-
getCssMetaData
public List<CssMetaData<? extends Styleable,?>> getCssMetaData()
该方法应该委托给Node.getClassCssMetaData()
,以便可以访问Node的CssMetaData而不需要反射。- Specified by:
-
getCssMetaData
在接口Styleable
- 重写:
-
getCssMetaData
在Region
- 结果
- 与该节点相关联的CssMetaData,其可以包括其超类的CssMetaData。
- 从以下版本开始:
- JavaFX 8.0
-
-