Hello,
Is there a way to bind a ListView to a list of properties in a class? Let's say we want to display a list of the characteristics of a company. The BindingContext is already set to the company in question.
Lets's say we have this company class:
class Company
{
public string Name
{ get; set; }
public string Address
{ get; set; }
}
How can we do something like this:
<ListView BindingContext="{Binding Company.Properties}">
So that we can easily list all of the company properties(Name and Address) without having as many labels as the number of properties?