Let's say we have prepared our TListView component with a dynamic appearance so that it can host multiple values on each item of the list. In the visual LiveBindings Designer, we can now see more bindable entries within the ListView1 element that match the Items.<ItemAppearanceElement> naming pattern. The LinkListControlToField binding can hold several expressions to be used in different parts of the list control:
- FieldName and CustomFormat are useful when you need a simple binding across the data source and the list view, generally for addressing Items.Text (not many item appearance elements). The CustomFormat property is referred to when FieldName is specified.
- FillExpressions determines how each item is filled with data. If you have multiple item appearance elements to fill, you'll need an expression for each. For each item, you must specify a ControlMember instance, so that you can address the item&apos...