I wanted to create list view like follows ,how should I do that in WPF.
- which control should I use?
- when I try to define the observer collection to key value , I didnt able to do it...any idea?
class ViewModel
{
public ObservableCollection<string> ServiceCollection { get; set; }
public ViewModel()
{
ServiceCollection = new ObservableCollection<string>();
}