Last active
January 19, 2019 17:43
-
-
Save Octogonapus/bd153ba4fe3182abc327e7dc1d46a6cf to your computer and use it in GitHub Desktop.
Widget test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.scene.control.*; | |
import javafx.scene.layout.*; | |
import com.neuronrobotics.bowlerbuilder.*; | |
FxUtil.runFX({ | |
Dialog dialog = new Dialog(); | |
dialog.setTitle("test"); | |
dialog.getDialogPane().getButtonTypes().add(ButtonType.OK); | |
dialog.showAndWait(); | |
}); | |
// :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment