Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As far as I know, XAML is only used in WPF and Silverlight, isn't it?

Thanks.

share|improve this question

5 Answers

up vote 1 down vote accepted

No, it is also used in Windows Workflow Foundation:

Using Workflow Markup

share|improve this answer

XAML is also the basis for XPS.

share|improve this answer

It is also used in Office 2007+ *x formats

share|improve this answer

You can use it for whatever you like (beginning with .NET 4.0 if I'm not mistaken, didn't try it in 3.5).

However, if you do so, please also use the other good things .NET has to offer, such as "INotifyPropertyChanged" and dependency properties. Otherwise whatever you create will be a less - than - optimal solution.

share|improve this answer

There is a huge mistake I often see people make when they say, "XAML is UI markup." It's not. You can have XAML with no UI whatsoever. XAML is, in essence, an XML object graph. It is markup for creating classes. It provides the parser with instructions on how to generate instances of types and set properties on those types. This is extremely useful for creating UI in WPF and Silverlight but can also extend to sample data, view models, and other constructs. As mentioned here, it is also used in Workflow and other areas.

share|improve this answer
Thanks. I know exactly what XAML is. But I didn't know it was used in other technologies like WorkFlow. – Nazaf Aug 18 '10 at 2:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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