我想以与使用 textFields 相同的方式使用 calendarTextField fomr jfxtras。即我希望能够在gridPane 中设置行、列、columnSpan。
我注册了calenderTextField
registerBeanFactory "calendarTextField", CalendarTextField
但我不能使用 row 属性
groovy.lang.MissingPropertyException: No such property: row for class: jfxtras.labs.scene.control.CalendarTextField
这有点清楚,因为 calendarField 没有 row 属性,但我查看了 javafx.Textfield:这也没有 row 属性。
这是如何工作的?为了能够使用 calendarTextField 的 row 属性,我必须做什么。
row 来自GridConstraints
...但它们与TextInputControl
GroovyFX 中的文本字段(或)有何关系?
谢谢你的帮助!