JfxMessageBox

JfxMessageBox is a free MessageBox library for JavaFX 2.

HelloJfxMessageBox.png

Home page

http://sourceforge.jp/projects/jfxmessagebox/wiki/

Download

Neueste Datei-Release

jfxmessagebox (jfxmessagebox-1.1.0)2012-10-10 18:55

System Requirements

JavaFX 2.2 or later is needed.

Supported Locale

  • en, de, es, fr, it, ja, ko, pt, ru, zh

Licensing

JfxMessageBox is licensed under a LGPL/EPL/ASL triple license, allowing use of the files under the terms of any one of the GNU Lesser General Public License, the Eclipse Public License, or the Apache License.

API Reference

JavaDoc

Source Code

Source Code

GettingStarted

Using JfxMessageBox is very easy.

  1. import jfx.messagebox.MessageBox;
  2. MessageBox.show(primaryStage,
  3. "Sample of information dialog.\n\nDialog option is below.\n[MessageBox.ICON_INFORMATION | MessageBox.OK | MessageBox.CANCEL]",
  4. "Information dialog",
  5. MessageBox.ICON_INFORMATION | MessageBox.OK | MessageBox.CANCEL);

InformationDialogSample.png

For more infomation, see GettingStarted.

Appnedix

MessageBox will be implement on Java 8 later version. See below: http://fxexperience.com/2014/06/bringing-dialogs-to-javafx/