Today I want to share with you some interesting stuff.
Recently my company started to work with Infragistics WPF controls.
My boss asked me to check a possibility to show in the same datagrid data of different types.
For instance we an XML with following data:
Recently my company started to work with Infragistics WPF controls.
My boss asked me to check a possibility to show in the same datagrid data of different types.
For instance we an XML with following data:
<datas xmlns=""> <data type="Imaging"> <title>Imaging stuff</title> <images> <img colour="blue" id="img1" size="122" /> <img colour="blue" id="img2" size="122" /> <img colour="blue" id="img3" size="122" /> </images> </data> <data type="Encounter"> <title>Encounter stuff</title> <parameters> <parameter id="qw" xx="12" yy="123" zz="1234"></parameter> <parameter id="qz" xx="12" yy="123" zz="1234"></parameter> <parameter id="qa" xx="12" yy="123" zz="1234"></parameter> <parameter id="qd" xx="12" yy="123" zz="1234"></parameter> </parameters> </data> </datas>As you can see Imaging and Encounter have different subcategories with different attributes and my objective is to show this data in the same datagrid control.