In my presenter I have this property:
public List PropertyNames { get; set; }
And I want to list out the names with a ItemsContro
An easier way to accomplish the same thing is to simply use:
<ItemsControl ItemsSource="{Binding PropertyNames}"/>
By default, this will create a vertical StackPanel and add each element in its own TextBlock. According to MSDN, this works for any of the following:
let me answer this, it's just {Binding}
.