28 lines
598 B
Java
28 lines
598 B
Java
|
package client;
|
||
|
|
||
|
import javafx.event.ActionEvent;
|
||
|
import javafx.fxml.FXML;
|
||
|
import javafx.scene.Node;
|
||
|
import javafx.stage.Stage;
|
||
|
|
||
|
public class CreateEventController {
|
||
|
|
||
|
public CreateEventController(){}
|
||
|
|
||
|
@FXML
|
||
|
public void initialize(){}
|
||
|
|
||
|
|
||
|
@FXML
|
||
|
protected void createBtnClick(ActionEvent event){
|
||
|
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||
|
stage.close();
|
||
|
}
|
||
|
|
||
|
@FXML
|
||
|
protected void abortBtnClick(ActionEvent event){
|
||
|
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||
|
stage.close();
|
||
|
}
|
||
|
}
|