public class App extends Application {
@Override
public void start( Stage stage ) throws Exception {
/* load form FXMLMain */
FXMLLoader fLoader = new FXMLLoader( getClass().getResource( "FXMLMain.fxml" ) );
Parent root = fLoader.load();
/* ..get its controller..and call some method */
FXMLMain controller = fLoader.getController();
controller.prepare( this );
...
}
No comments:
Post a Comment