use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuCashCalculate.
@FXML
private void mnuCashCalculate(ActionEvent event) {
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToCashCalculate(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuBank.
@FXML
private void mnuBank(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method btnSettings.
@FXML
private void btnSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage DashboardStage = (Stage) btnSettings.getScene().getWindow();
(new GoToOperation()).goToSettings(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuAbout.
@FXML
private void mnuAbout(ActionEvent event) {
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToAbout(DashboardStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class DashboardController method mnuTransactionHistory.
@FXML
private void mnuTransactionHistory(ActionEvent event) {
Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToTransactionHistory(DashboardStage);
}
Aggregations