我有一個看起來像一個XML文件:讀一個XML並將其導入到一個DataGrid
<code>
<rccontroller>
<experiment>
<profile name="Profile 1" scanCycle="1" profileTime="32.76" attenuator="31" archive="" coded="true">
<mode name="Mode 1" scanCycle="1" method="DBS" prf="1000" baudWidth="1" baudNo="16" positions="Z" coded="true">
<beam name="Beam 1" scanAngle="0" azimuth="0" offset="0" rmin="1" rmax="20" nci="256" nfft="256" nsa="1" nrgb="128" uiName="Z"/>
</mode>
</profile>
</experiment>
</rccontroller>
</code>
我需要導入模式和梁成DataGrid
,在模式將是父電網和束將成爲家長網格的孩子。
我有閱讀XML中元素的內部標籤的問題。
因此,請直接指導如何讀取XML內部元素並將其放入GridView
以及如何爲網格添加子節點GridView
並對其執行相同操作。
謝謝。
做ÿ你試過什麼?在WPF數據網格中,您可以使用XPath綁定到XML元素。對於子網格,您可能需要指定您的datagridrow模板併爲其中的內部項目執行XPath綁定 – whoisthis
請參閱http://stackoverflow.com/questions/2199721/how-to-bind-xml-to-the-wpf-datagrid - 正確地http://www.c-sharpcorner.com/UploadFile/mamta_m/binding-xml-to-a-wpf-datagrid/ – whoisthis
嘿Bjoshi,讓我們忘了子網格視圖和所有。 我只想檢索模式和光束的內部元素的值... –