Search code examples
c#windows-phone-7xamlstackpanel

Issues regarding closing tag elements and attachable properties?


Can anyone help me figure out whats wrong with this piece of xaml code? Basically what happened was I removed a listbox from the xaml and cs as it wasn't needed and now it's returning these errors, I'm sure its something obvious that I'm missing here! apologies for what is probably a noob question

enter image description here


Solution

  • Firstly, you seem to have two StackPanel start tags but only one StackPanel end tag under your ContentPanel Grid. What errors do you get if you add the missing StackPanel end tag before th first Grid end tag?

    Thanks

    Paul Diston