0

javaFX で fxml 機能を試す

  1. TabedPane の作成中にタイトルを指定する方法は? 以下のコードは機能しません

    <Accordion >
            <panes>
                <TitledPane>
                    <title>
                        <String fx:value="123"/>
                    </title>
                    <content>
                        <Text text="123"/>
                    </content>
    
                </TitledPane>
            </panes>
        </Accordion>
    

2 アニメーションの Duration をインスタンス化する方法は?

<Duration><Double fx:value="300"/></Duration>
4

1 に答える 1

1

2 TitledPane は Labeled を拡張するため、プロパティ テキストがあります。

<TitledPane text="header">
            <content>
                <Text text="123"/>
            </content>

        </TitledPane>
于 2011-10-07T05:21:47.923 に答える