tilepane javafx中相同大小的按钮

时间:2019-03-01 23:19:53

标签: java button javafx size

大家好,我是GUI的新手...到目前为止,我的所有程序都是基于文本的。我才刚开始,我正在使用JAVAFX。
我想重新创建电话键盘。它应具有4行,每行3个按钮,每个按钮应具有其相关的编号以及其字母。确实如此。但是按钮的大小不一样。

enter image description here

我的意思是……由于我使用的是tilePane,所以按钮占据相同数量的像素(或者至少我想是这样),但是按钮的实际可见大小是不同的,因为每个按钮仅占用显示其内容所需的大小。我将按钮存储在数组中。有没有办法使它们大小都和最大的一样?

public class PhoneKeyboard extends Application
{

    Button buttons [];
    @Override
    public void start(Stage stage) throws Exception
    {
        // Create the set of necessary buttons.
        buttons = new Button[12];
        fillButtons(buttons);
        //Create the grid for the buttons.
        TilePane pane = new TilePane();
        pane.setPadding(new Insets(10,10,10,10));
        pane.setPrefColumns(3);
        pane.setMaxWidth(Region.USE_PREF_SIZE);// Use the pref size as max size to make sure there will be the expected size
        pane.setVgap(5.0);// to set ome spacing between each tile of the pane.
        pane.setHgap(5.0);
        //Put the buttons on the pane (layout);
        pane.getChildren().addAll(buttons); 
        // JavaFX must have a Scene (window content) inside a Stage (window)
        Scene scene = new Scene(new StackPane(pane), 300,400);// In order to use the pfer size of the pane, the tile Pane doesn"t have to be the root in the scene. Therefore we created a scene with a stack pane containing our tile pane as the root. 
        stage.setTitle("Keyboard");
        stage.setScene(scene);
        // Show the Stage (window)
        stage.show();
}

1 个答案:

答案 0 :(得分:2)

按钮的最大宽度和最大高度恰好足以容纳按钮的内容。大多数布局,包括TilePane,都不会使子节点大于其最大大小。

如果您希望每个按钮都可以变大,请在调用fillButtons之后设置其最大宽度和高度:

for (Button button : buttons) {
    button.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);
}