我有一个关于定位文成酒吧区的问题。
我创造了这个例子:
import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.FlowPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
public class MainApp extends Application
{
@Override
public void start(Stage stage) throws Exception
{
FlowPane flow = new FlowPane();
flow.setPrefSize(900, 30);
Label label = new Label("Zoom 1.5");
Label labelStat = new Label("Users 7");
Label labelSec = new Label("Connected");
flow.getChildren().addAll(label, labelStat, labelSec);
HBox hb = new HBox();
hb.getChildren().add(flow);
Scene scene = new Scene(hb);
stage.setTitle("JavaFX and Maven");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args)
{
launch(args);
}
}
我怎样才能得到这个视觉效果:
在我来说,我想调整的主要阶段,并保留文本的相对位置。 如果有更多的合适的组分I可以与不同的布局改变FlowPane。