I have multiple Users, each with a collection of Tasks.
public class User {
public string Name { get; set; }
public IEnumerable<Task> Tasks { get; set; }
}
public class Task {
public string Name { get; set; }
}
What I would like to do in Silverlight is have each User represented as a column, with Tasks represented as items in the column. I know it's easy to data-bind with rows, but what about columns?
Can I do this with a traditional list view, or should I create my own grid-based control?