The ListView in WPF is a very powerfull control! While we wait patiently for the DataGrid to be released... lets see what we can do with a ListView The Basics Before we start pimping the control... lets look at the basics! I created a very simple data object to be displayed in the ListView public class Disciple { public string Name { get ; set ; } public string Surname { get ; set ; } public string Website { get ; set ; } } and I also populate it with some data List < Disciple > Disciples ...