我正在尝试获取2个元素,一个按钮和一个标签,以便在javafx中的单个HBox中进行各自的对齐。到目前为止我的代码:
Button bt1= new Button("left");
bt1.setAlignment(Pos.BASELINE_LEFT);
Label tst= new Label("right");
tst.setAlignment(Pos.BASELINE_RIGHT);
BorderPane barLayout = new BorderPane();
HBox bottomb = new HBox(20);
barLayout.setBottom(bottomb);
bottomb.getChildren().addAll(bt1, tst);
默认情况下,hbox将两个元素推到左边,彼此相邻。
现在,我的项目需要使用borderpane布局,但就目前而言,是否有某种方法可以强制标签tst停留在hbox的最右侧,bt1是否留在最左边?< / p>
如果-fx-stylesheet东西以这种方式工作,我也可以做css。
答案 0 :(得分:1)
您需要将左侧节点添加到AnchorPane并使该AnchorPane水平增长。
import javafx.application.*;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.*;
/**
*
* @author Sedrick
*/
public class JavaFXApplication33 extends Application {
@Override
public void start(Stage primaryStage)
{
BorderPane bp = new BorderPane();
HBox hbox = new HBox();
bp.setBottom(hbox);
Button btnLeft = new Button("Left");
Label lblRight = new Label("Right");
AnchorPane apLeft = new AnchorPane();
HBox.setHgrow(apLeft, Priority.ALWAYS);//Make AnchorPane apLeft grow horizontally
AnchorPane apRight = new AnchorPane();
hbox.getChildren().add(apLeft);
hbox.getChildren().add(apRight);
apLeft.getChildren().add(btnLeft);
apRight.getChildren().add(lblRight);
Scene scene = new Scene(bp, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
launch(args);
}
}
答案 1 :(得分:0)
根据JavaDoc在setAlignment()
或Button
上致电Label
时:
指定Labeled中的文本和图形应该如何 当Labeled中有空的空格时对齐。
因此,它只是Button
或Label
中文字的位置。但您需要的是将Button
或Label
包裹在某个容器中(比如说HBox
)并填充所有可用空间(HBox.setHgrow(..., Priority.ALWAYS)
):
Button bt1= new Button("left");
HBox bt1Box = new HBox(bt1);
HBox.setHgrow(bt1Box, Priority.ALWAYS);
Label tst= new Label("right");
BorderPane barLayout = new BorderPane();
HBox bottomb = new HBox(20);
barLayout.setBottom(bottomb);
bottomb.getChildren().addAll(bt1Box, tst);