我正在使用HBox作为标签和文本框的容器。我希望他们两个都是垂直居中的,但无论如何尝试似乎最终都没有发生:
这是我目前的代码:
setScene(new Scene(new HBox(10) {
setPadding(new Insets(10, 10, 10, 10))
getChildren.add(new Label("Text to find:") { setAlignment(Pos.CENTER) })
getChildren.add(new TextField() { setMinWidth(300) })
}))
由于
答案 0 :(得分:6)
致电setAlignment(Pos.CENTER)
上的HBox
。