Getting a WPF Listview to display ObservableCollection<T> using databinding
问题 I have a observable collection of type Project, that I want to be displayed in a ListView but nothing is added to my ListView which I really dont understand My MainWindow.xaml <ListView Name="ListViewProjects" Grid.Column="0" Grid.RowSpan="3" SelectionChanged="ListViewProjectsSelectionChanged" ItemsSource="{Binding}" IsSynchronizedWithCurrentItem="True" MinWidth="100"> <ListView.ItemTemplate> <DataTemplate> <WrapPanel> <TextBlock Text="{Binding Path=ProjectID}"/> <TextBlock Text="{Binding