vote up 0 vote down star

I am creating and with content 'Save & Add'. I write it in XAML, but the symbol '&' is not accepting. What is the reason for that. How can I do that?

flag

XAML is valid XML and you can't use an & in XML without escaping it. – Bryan Anderson Aug 3 at 14:18

3 Answers

vote up 5 vote down check

Use & instead of &.

You might find this article of some use - How to: Use Special Characters in XAML

link|flag
vote up 0 vote down

From Wikipedia:

Unlike traditional HTML with its large range of character entity references, in XML there are only five predefined character entity references. These are used to escape characters that are markup sensitive in certain contexts:

  • & → & (ampersand, U+0026)
  • &lt; → < (less-than sign, U+003C)
  • &gt; → > (greater-than sign, U+003E)
  • &quot; → " (quotation mark, U+0022)
  • &apos; → ' (apostrophe, U+0027)
link|flag
vote up 0 vote down

You might need to escape it as "&amp;". See this link.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.