TreeView コントロールを使用して XML ファイルを GUI にロードしようとしています。ただし、XML ファイルに独自のレイアウトを使用しています。
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 を使用するのはまったく初めてです。過去数時間、Web を検索してきましたが、どれも役に立ちませんでした。近いものもありますが、おそらくプロパティが表示されなかったり、ノードの名前が表示されなかったりします。
私は Visual Studio 2005 で c# を書いています。助けてくれてありがとう!