Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Good afternoon all,

I am trying to use the XmlContentImporter to populate a data structure as follows

target class object

C#
public class UiElement
{
    public List<UiElement> Elements { get; set; }
    public Point Position { get; set; }
}


my source xml is as follows

XML
<?xml version="1.0" encoding="utf-8" ?>
<XnaContent xmlns:UiElements="PaulsProducts.XNA.Core.Screens.UiElements">
  <Asset Type="UiElements:UiElement">
    <Position>0 0</Position>
    <Elements>
      <Item>
        <Position>0 0</Position>
        <Elements/>
      </Item>
    </Elements>
  </Asset>
</XnaContent>


This gives me the error "XML element Elements not found

Can anybody tell me what my rookie mistake is.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900