Download List

Descripción del Proyecto

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

System Requirements

System requirement is not defined

Publicado: 2012-10-10 16:03
jfxmessagebox jfxmessagebox-1.0.8 (1 files Ocultar)

Release Notes

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

[[Embed(HelloJfxMessageBox.png)]]

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

== Download ==
[[ReleaseList]]

== System Requirements ==
JavaFX 2.2 or later is needed.

== Supported Locale ==
* en
* ja
* 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 ==
[http://svn.sourceforge.jp/svnroot/jfxmessagebox/trunk/JfxMessageBox/javadoc/jfx/messagebox/MessageBox.html JavaDoc]

== Source Code ==
[http://svn.sourceforge.jp/svnroot/jfxmessagebox/trunk/JfxMessageBox/ Source Code]

= GettingStarted =
Using JfxMessageBox is very easy.

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

MessageBox.show(primaryStage,
"Sample of information dialog.\n\nDialog option is below.\n[MessageBox.ICON_INFORMATION | MessageBox.OK | MessageBox.CANCEL]",
"Information dialog",
MessageBox.ICON_INFORMATION | MessageBox.OK | MessageBox.CANCEL);
}}}
[[Embed(InformationDialogSample.png)]]

For more infomation, see GettingStarted.

Changelog

2012.10.10 (0.0.8)
ADD FEATURE: zh locale is added.

2012.10.10 (0.0.7)
FIX BUG: Hide MessageBox constructor.

2012.10.09 (0.0.6)
ADD FEATURE: Add keyboard mnemonic to button.

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