3
我正在嘗試使用TreeView控件將XML文件加載到我的GUI中。 但是,我爲我的XML文件使用專有佈局。將XML文件讀入TreeView
的XML的結構是這樣的:
<ConfiguratorConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Section>
<Class ID="Example" Name="CompanyName.Example" Assembly="Example.dll">
<Interface>
<Property Name="exampleProperty1" Value="exampleValue" />
<Property Name="exampleProperty2" Value="exampleValue" />
<Property Name="exampleProperty3" Value="exampleValue" />
</Interface>
</Class>
</Section>
</ConfiguratorConfig>
我想輸出將結構類似:
Class "Example"
Property "exampleProperty1"
Property "exampleProperty2"
Property "exampleProperty3"
我全新的使用XML。過去幾個小時我一直在網上搜索,結果都沒有幫助。有些已經接近,但可能屬性不會顯示,或節點的名稱將不會顯示,等等。
我在C#中編寫Visual Studio 2005. 感謝您的幫助!
完美!我設法調整這個代碼來填充我的TreeView,而這正是我所需要的。 – Fraserr 2012-07-09 14:38:33
太棒了!我很高興幫助:) – 2012-07-09 16:31:33