Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find good resources to learn XAML? [closed]

I'm looking for (online) resources to learn/lookup XAML constructs.

Can you recommend any good blogs, tutorials, references for XAML?

like image 636
MicSim Avatar asked Aug 12 '10 13:08

MicSim


4 Answers

Some more links for knowing about XAML -

How XAML works : http://www.i-programmer.info/programming/wpf-workings/446-how-xaml-works.html

The New Iteration(A must read whitepaper): http://windowsclient.net/wpf/white-papers/thenewiteration.aspx

It is also good to have knowledge of BAML(Compiled version of XAML)

B is for... BAML: http://blogs.msdn.com/b/jimoneil/archive/2009/01/12/b-is-for-baml.aspx

Compiled XAML = BAML not IL

It may be a little high level but you must know the basic guidelines/conventions (in case you work on a commercial project later):

XAML Guidelines : http://www.cookingwithxaml.com/content/xamlguidelines/xamlGuidelinesDraft0.pdf

XAML Conventions: http://groups.google.com/group/wpf-disciples/web/wpf-and-xaml-coding-guidelines

XAML guidelines and best practices: http://www.85turns.com/2009/02/09/xaml-guidelines-and-best-practices/comment-page-1/#comment-1419

like image 100
akjoshi Avatar answered Oct 09 '22 15:10

akjoshi


Well, MSDN's XAML Overview is a pretty good place to start.
From there, the material discussed in that article is built upon in XAML Syntax In Detail.
If you want to go even deeper, you could have a look at the XAML Language Specification, although the other two articles are probably at the right level of detail to be useful.

like image 45
Donut Avatar answered Oct 09 '22 14:10

Donut


Best value for the money XAML (Silverlight QuickStart)

like image 25
user279521 Avatar answered Oct 09 '22 14:10

user279521


While its xaml is specific to Silverlight I thought this was a good resource:

http://channel9.msdn.com/learn/courses/Silverlight4/

like image 28
Felan Avatar answered Oct 09 '22 16:10

Felan