tags:

views:

105

answers:

1

I'm developping a xml data format. Besides other data there should be a xaml drawing. So I wanted to have a xml element, which can contain any valid xaml. How can this be expressed in the XML Schema? I tried to import the xaml schema, but I couldn't find a xsd file for it. The makeshift would be to use an encoded string.

+1  A: 

Use <![CDATA[ ... ]] for storing the XAML. Afterwards you can obtain the schema by providing a sample document to lots of freeware apps. Such apps are even web based.

thelost
Good idea, I'll give it a try.
Michael Stoll