Download List

Project Description

JfxMessageBox is a free library to use MessageBox in JavaFX 2.

System Requirements

System requirement is not defined

Released at 2012-10-09 09:51
jfxmessagebox jfxmessagebox-1.0.5 (1 files Hide)

Release Notes

= JfxMessageBox =
JfxMessageBox is a MessageBox library for JavaFX 2.

== Home page ==
http://sourceforge.jp/projects/jfxmessagebox/wiki/

== Download ==
[[ReleaseList]]

== 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.

{{{ code java
import jfx.messagebox.*;

MessageBox.show(primaryStage,
"Sample of error dialog.\n\nDialog option is below.\n[MessageBox.ICON_ERROR]",
"Error dialog", MessageBox.ICON_ERROR);
}}}
[[Embed(ErrorDialogSample.png)]]

For more infomation, see http://sourceforge.jp/projects/jfxmessagebox/wiki/GettingStarted

Changelog

2012.10.09 (0.0.5)
FIX BUG: Create stage without iconized button.