How to bind the values of the itemsource (array of strings) to a label in a ListView
If you want to bind directly to the value of the object itself, use the "." syntax for the path
<Label Text="{Binding .}" />
To bind directly to the object you should use:
<Label Text="{Binding}" />
This is shorthand for:
<Label Text="{Binding Path=.}" />