当我SceneBuilder编辑,程序看起来像这样SceneBuilder与JavaFX程序看起来不同吗?
这是我第一次尝试使用FXML,我不知道是什么出错了。我试图按照this的问题,但没有看到一个解决方案..
这里是我的FXML代码:
<?xml version="1.0" encoding="UTF-8"?>
<GridPane alignment="center" hgap="10" prefHeight="633.0" prefWidth="869.0" stylesheets="/sample/sample.css" vgap="10" xmlns="http://javafx.com/javafx/8.0.76-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<columnConstraints>
<ColumnConstraints />
</columnConstraints>
<rowConstraints>
<RowConstraints />
</rowConstraints>
<children>
<BorderPane prefHeight="662.0" prefWidth="869.0" stylesheets="@sample.css">
<top>
<ImageView fitHeight="173.0" fitWidth="409.0" pickOnBounds="true" preserveRatio="true" BorderPane.alignment="CENTER">
<image>
<Image url="@../../../../../Pictures/title.png" />
</image>
</ImageView>
</top>
<right>
<VBox prefHeight="305.0" prefWidth="105.0" BorderPane.alignment="CENTER">
<children>
<Button mnemonicParsing="false" text="Make a Graph" />
<Button mnemonicParsing="false" text="Save" />
<Button mnemonicParsing="false" text="Delete" />
</children></VBox>
</right>
<center>
<VBox prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
<children>
<Pane prefHeight="41.0" prefWidth="764.0">
<children>
<BorderPane prefHeight="0.0" prefWidth="764.0">
<left>
<ComboBox prefWidth="150.0" promptText="Sort or Filter" BorderPane.alignment="CENTER" />
</left>
<right>
<TextField text="Search" BorderPane.alignment="CENTER" />
</right>
<center>
<StackPane prefHeight="150.0" prefWidth="200.0" BorderPane.alignment="CENTER">
<children>
<HBox disable="true" prefHeight="100.0" prefWidth="200.0">
<children>
<ComboBox prefWidth="150.0" />
<CheckBox mnemonicParsing="false" prefHeight="33.0" prefWidth="120.0" text="Favourties" />
</children>
</HBox>
</children>
</StackPane>
</center>
</BorderPane>
</children></Pane>
<ScrollPane prefHeight="507.0" prefWidth="764.0">
<content>
<GridPane prefHeight="90.0" prefWidth="762.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Label prefHeight="21.0" prefWidth="61.0" text="Graph" />
<Label text="Description" GridPane.columnIndex="1" />
<Label text="Options" GridPane.columnIndex="2" />
<Label text="Favourites" GridPane.columnIndex="3" />
</children>
</GridPane>
</content>
</ScrollPane>
</children>
</VBox>
</center></BorderPane>
</children>
</GridPane>
这里是我的Java代码:
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 600, 400));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
对不起,大块的代码。只是不确定问题来自哪里。
你是绝对的英雄!我不知道你可以使用GridPanes。非常感谢。 200000 upvotes :) –