I am trying to display information from my ObservableCollection<MyData> in a ListView . MyData has:
string Name string Location int Progress
Using a DataBinding , I can display the Name and Location for all elements in the ObservableCollection<MyData> in my column. But how can I add a Progress column with a ProgressBar inside? Progress - percentage.
data-binding listview progress-bar wpf
Warpin
source share