得到了这个
package net.makerimages.starling.src.window;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import net.makerimages.starling.src.Main;
/**
* Created with IntelliJ IDEA.
* User: Kodukas
* Date: 29.11.13
* Time: 23:53
* To change this template use File | Settings | File Templates.
*/
public class TopBar extends HBox
{
public Button closeButton;
public Button minMaxButton;
public Label titleLabel;
public TopBar()
{
titleLabel=new Label("Starling browser");
closeButton=new Button("X");
closeButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
Platform.exit();
}
});
closeButton.setStyle("-fx-opacity: 0.9;");
minMaxButton=new Button("| |");
minMaxButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
if(Main.stg.isFullScreen()==false)
{
Main.stg.setFullScreen(true);
minMaxButton.setText("||");
}
else if(Main.stg.isFullScreen()==true)
{
Main.stg.setFullScreen(false);
minMaxButton.setText("| |");
Main.browser.setMaxHeight(Main.browser.getHeight()-20);
}
}
});
this.getChildren().addAll(closeButton,minMaxButton);
this.getChildren().add(titleLabel);
setMargin(titleLabel,new Insets(0,10,0,0));
}
}
我想要的是右侧的按钮和中间的标签,但是我尝试过的任何东西都没有用。(这用作borderPane中的工具栏) 我已经尝试过我所知道的一切
答案 0 :(得分:2)
使用StackPane
作为工具栏的基本容器。向StackPane添加Label
和HBox
。标签将自动与中心对齐。将按钮添加到HBox;在HBox上将alignment属性设置为TOP_RIGHT
。根据需要设置填充,间距等。
使用SceneBuilder来尝试这样的布局非常有用。
答案 1 :(得分:0)
我建议使用GridPane
并将元素添加到他们需要的行和列中。