Hi,
I have the following domain:
public class FileInformation
{
public String FileName;
public String CreatedBy; // name of user who created the file
public String CreatedComments;
public String CreatedDate;
public String EditedBy; // name of user who last edited the file
public String EditedComments;
public String EditedDate;
}
public class Folder
{
public List<FileInformation> Files {get;set}
}
I want to have a WPF datagrid and bind the list of Files in the "Folder" class to it .....It's pretty easy to if I want to have the data displayed in a standard way..... but I want to have it displaYed in the following way:
Any ideas on what I have to do to have the data displayed in this way ?