怎么将按钮添加进GridPane
时间: 2024-01-09 20:03:10 浏览: 71
要将按钮添加到GridPane中,请使用GridPane的add()方法,该方法接受两个参数:要添加的控件和要添加到的行和列索引。以下是一个简单的示例代码,演示如何将一个按钮添加到GridPane的第一行和第一列中:
```
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
public class GridPaneExample extends Application {
@Override
public void start(Stage primaryStage) {
// Create a new GridPane
GridPane gridPane = new GridPane();
// Create a new button
Button button = new Button("Click me!");
// Add the button to the GridPane
gridPane.add(button, 0, 0);
// Create a new Scene with the GridPane as the root node
Scene scene = new Scene(gridPane, 300, 200);
// Set the Scene to the primaryStage
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
```
在上面的代码中,我们创建了一个GridPane,并将一个按钮添加到第一行和第一列中。我们还创建了一个场景,并将GridPane设置为根节点,最后将场景设置为primaryStage并显示它。
阅读全文