What is XAML? - Silverlight

What is XAML? Are XAML file compiled or built on runtime?

XAML stands for Extensible Application Markup Language. It is an XML based markup language. XAML is the language for visual presentation of the application development in MS-Expression Blend. Expression Blend application creation is writing XAML code in design view of Expression Blend.

Usually XAML files are compiled and also support parsing during runtime. At runtime XAML file is not seen. When the XAML based project is build, a “g.cs” file will be created in obi\Debug folder.
What are dependency properties in silverlight?
Dependency properties are exposed as CLR properties. Dependency properties’ purpose is to provide a way of computing...
Difference between Finalize() and Dispose() - C#.NET
What is the difference between Finalize() and Dispose()? - Dispose() is called by as an indication for an object to release any unmanaged resources it has held...
How does the XmlSerializer work? - C#.NET
How does the XmlSerializer work? - The XmlSerializer constructor generates a pair of classes derived from XmlSerializationReader and XmlSerializationWriter by analysis of the classes using reflection...
Post your comment