raw xmlファイルをDataGridにバインドし、C#を使用してWPFフォームに表示したいと考えています。私は、私のXMLを格納するためにデータセットを使用し、データセットをDataGridにバインドする予定でした。私のXMLは、私は列のID、名前、movesLeftを持つ2つのデータグリッド用と のための1つを使用する予定のこのWPFでraw XMLをデータグリッドにバインド
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<games>
<game id="123456" name="501">
<player id="1">
<name>john</name>
<score>495</score>
<movesLeft>15</movesLeft>
<won>No</won>
<completed>uncompleted</completed>
</player>
<player id="2">
<name>
konj
</name>
<score>501</score>
<movesLeft>15</movesLeft>
<won>No</won>
<completed>uncompleted</completed>
</player>
</game>
</games>
のようなものを獲得見て、起動する
http://www.google.com/search?q=wpf+bind+xml&sourceid=ie7&rls=com.microsoft:en-US&ie=utf8&oe=utf8 –