嗨,我对 treeview 有疑问。
我有一个列表列表和名为 treeLic 的树视图。现在我想用这个列表填充这个树视图。我可以这样做吗?怎么做?
XmlReader xr = XmlReader.Create(new StringReader(final_output));
while (xr.Read())
{
switch (xr.Name)
{
case "FEATURE":
if (xr.HasAttributes)
{
while (xr.MoveToNextAttribute())
{
if (xr.Name == "NAME")
{
liste.Add(xr.Value);
}
}
}
break;
}
}
treeLic. ????? //fill this treeview with this list liste