我想在 javaFX 2 中创建一个应用程序,它作为一个较小的登录窗口打开,然后,当您输入正确的数据时,它会将您带到更大的主窗口。两者都是用 fxml 设计的,事件在 java 代码中处理。
是的,我知道,它与示例中的应用程序几乎相同,我已经尝试做我想做的事情并且它在那里工作。
现在,当我在我的项目中做同样的事情时,当我想更改阶段的值时遇到了问题。
正如你在下面的代码中看到的,我有一个全局变量,我在 start 方法中设置了 primaryStage 的值。就像测试一样,我在 start 方法结束时将其打印出来并设置了值。
然后,当我在单击按钮时尝试使用它(方法 buttonClick)时,阶段变量的值为 null,因此我不能用它来调整窗口大小或其他任何东西。
我的问题是,尽管我没有使用更改两个打印件之间的任何内容,但为什么要重置阶段变量值?
此代码是我尝试过的示例,我刚刚删除了所有对于理解我的应用程序如何工作并不重要的代码。
public class App extends Application {
private Stage stage;
@FXML
private AnchorPane pane;
@Override
public void start(Stage primaryStage) {
try {
stage = primaryStage; // Set the value of primaryStage to stage
primaryStage.setScene(new Scene(openScene("Login"))); // Load Login window
primaryStage.show(); // Show the scene
} catch (IOException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println(stage);// <-- Here it has the value of primaryStage obviously
}
@FXML
void buttonClick(ActionEvent event) throws IOException {
// Note that even if I try to print here, the value of stage is still
// null, so the code doesn't affect it
// Also, this loads what I want, I just can't change the size.
try{
pane.getChildren().clear(); // Clear currently displayed content
pane.getChildren().add(openScene("MainScene")); // Display new content
System.out.println(stage); // <-- Here, output is null, but I don't know why
stage.setWidth(500); // This line throws error because stage = null
} catch (IOException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
}
}
public Parent openScene(String name) throws IOException {
//Code from FXML login example
Parent parent = (Parent) FXMLLoader.load(PrijavnoOkno.class.getResource(name
+ ".fxml"), null, new JavaFXBuilderFactory());
return parent;
}
public static void main(String[] args) {
launch(args);
}
}