generated from programacionThiar/plantilla_iesthiar_javafx
13 lines
217 B
Java
13 lines
217 B
Java
|
|
package iesthiar;
|
||
|
|
|
||
|
|
import java.io.IOException;
|
||
|
|
import javafx.fxml.FXML;
|
||
|
|
|
||
|
|
public class PrimaryController {
|
||
|
|
|
||
|
|
@FXML
|
||
|
|
private void switchToSecondary() throws IOException {
|
||
|
|
App.setRoot("secondary");
|
||
|
|
}
|
||
|
|
}
|