Java:使用 XML 创建 GUI?

2022-09-03 07:01:21

im搜索最流行的框架来创建具有xml定义的java gui。我更喜欢秋千!

需要您的意见,谢谢!


答案 1

我对ANTForm有很好的经验:http://antforms.sourceforge.net/

它从 XML 生成 Java Swing 面板。我用它来构建执行 ANT 目标的简单 GUI 应用程序。

XML 声明的示例:

<antform title="Send Mail" 
    save="properties.txt"
    image="doc/images/testlogo.jpg">
    <label>To send a mail, use the following form. Pick a recipient,
 type a subject and a body...the script will do the rest.</label>
    <selectionProperty label="Recipient: " 
    property="recipient" 
    values="address1@somewhere.com; address2@somewhere.com; address4@somewhere.com" 
    separator=";"/>
    <textProperty label="Subject : " property="subject" />
    <multilineTextProperty label="Message body: "
        property="body"/>
    <booleanProperty label="Send immediately: " property="send"/>
</antform>

它产生的示例:

enter image description here


答案 2

我建议看看FXML,那里有一个由oracle制作的整洁工具,可用于制作GUI,以下是一些很好的入门链接。

http://docs.oracle.com/javafx/2/fxml_get_started/jfxpub-fxml_get_started.htm

http://docs.oracle.com/javafx//scenebuilder/1/get_started/jsbpub-get_started.htm

您不需要使用 SceneBuilder 工具,但在使用 FXML 创建 GUI 时,它使事情变得非常容易。


推荐