Skip to content
Bruno Dantas edited this page Jul 24, 2015 · 112 revisions

JavaFXUtils

The aim of JavaFXUtils Repository, is to create a Framework with some utilities for JavaFX Framework, creating some small components to help developers building their own applications.

A Component is a simple Node object with some utilities mounted over it, for example: Imagine that we want to tigger some code on double click of a Button with JavaFX you can do something like:

Button button = new Button();

button.setOnMouseClicked((event)->{ if(event.getClickCount() == 2) onDoubleClick(); });

Feel free to help by creating new components, finding or solving bugs and sharing this Repository! :)

Clone this wiki locally