【发布时间】:2012-07-04 19:43:11
【问题描述】:
所以在 Windows 8 Metro(使用 C#/WinRT)中,我的数据结构如下:
public class Comment
{
public string body;
public List<Comment> replies;
}
并且想在页面上显示它,但以前的方法现在在 WinRT 中不可用(TreeView 和 HeirarchicalDataTemplate)。在 Windows 8 中,无论如何现在都可以这样做吗?非常感谢您的帮助!
【问题讨论】:
标签: data-structures recursion windows-8 microsoft-metro windows-runtime