0
我有以下領域:WPF數據網格結合
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}
}
我想有一個WPF DataGrid和綁定在「文件夾」類,以它的文件列表.....這是很容易,如果我想有一個標準的方式顯示的數據.....但我想把它通過以下方式顯示:
alt text http://i49.tinypic.com/nbua94.jpg
什麼我必須做的,有顯示的數據的任何想法通過這種方式 ?