Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliastherkildsen/artimis
https://github.com/eliastherkildsen/artimis
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eliastherkildsen/artimis
- Owner: eliastherkildsen
- Created: 2024-03-12T08:24:14.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-18T12:38:31.000Z (10 months ago)
- Last Synced: 2024-11-06T20:14:54.729Z (2 months ago)
- Language: Java
- Size: 502 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JAVA FX TEMPLATE MENU
This is a simple structured javaFX menu template.## How does it work?
1. Create an fxml view, with an AnchorPane as root.
3. Create a Controller for the view. ( do not link the controller in
the fxml! This will later be done through data binding(3))3. Create a new Enum attribute in View/ViewList.java,
parse the fxml file name, controller name in the enum. EX```JAVA
NEW("NEWView.fxml", "NewController");
```4. Add a button in MainView.fxml and link it to the new view
thrugh the MainController.java