blueprint-compiler/tests/samples/gtkcolumnview.blp
2024-05-04 12:27:12 -05:00

21 lines
384 B
Text

using Gtk 4.0;
ColumnView {
header-factory: BuilderListItemFactory {
template ListHeader {}
};
row-factory: BuilderListItemFactory {
template ColumnViewRow {}
};
ColumnViewColumn {
factory: BuilderListItemFactory {
template ColumnViewCell {
child: Label {
label: bind template.item as <$MyObject>.name;
};
}
};
}
}