Есть ли способ создания пользовательских ListCells ListView с использованием файлов f xml в tornadofx?
У меня есть af xml файл CustomListCell
:
<HBox>
<Label text="File name"/>
<ImageView fitHeight="18.0" fitWidth="18.0" pickOnBounds="true"/>
<stylesheets>
...
</stylesheets>
</HBox>
И я есть CustomListCell.kt
для этого f xml. Я хочу сделать что-то вроде этого:
val customList = ListView<CustomListCell>()
customList.add(CustomListCell(name, image))
Как реализовать CustomListCell.kt
для этой цели?