在 Winform 中,我有一个 UserControl TreeView,它从 XML 文件加载实时数据。在 treeView 中成功加载 XML 文件。
我想为不同的数据集生成具有不同图像的 TreeView。此链接说明为特定数据数组生成树视图。[http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.imagelist][1]
如何为每个父节点和子节点添加不同的图像,在 XML 中,我想为Global
Files
Section
和Data
. 请用一些片段向我解释。
<Global>
<Files name="Bit_RunvsDepth" >
<Section name="Linguini">
<Data>measured depth</Data>
</Section>
<Section name="Process">
<Data>Tree</Data>
<Section name="Arguments">
<Data>None</Data>
</Section>
<Section name="Extras">
<Data>0.01</Data>
<Data>Foodg</Data>
</Section>
</Section>
<Section name="Color">
<Data>0.0</Data>
</Section>
<Section name="MinScale">
<Data>0</Data>
</Section>
<Section name="MaxScale">
<Data>1000</Data>
</Section>
</Files>
</Global>