0

tornadofxを使用してカスタムフォームサイズでサイズをロックするには?

class MainView : View("Form") {
override val root = form{
    fieldset("Personal Information") {
        field("ID") {
            textfield()
        }
        field("Password") {
            textfield()
        }
        field {
            button("Login")
            button("Register")
        }
    }
}

}

4

1 に答える 1