JfxMessageBox

JfxMessageBox is a MessageBox library for JavaFX 2.

HelloJfxMessageBox.png

Home page

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

Download

最新文件发布

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

System Requirements

JavaFX 2.2 or later is needed.

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.

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.