What is XAML?
1. XAML stands for Extended Application Markup Langauge.
2. XAML specifies the user interface for Silverlight or WPF application.
3. XAML is used declare controls on Silverlight or WPF Page. .
4 . In simple terms XAML Page is similar to .Aspx Page in asp.net website.
5. In .Aspx Page we use Html to form UI, while in XAML we use Xml to form UI
XAML Layouts:
Stack Panel
Wrap Panel
Dock Panel
Canvas
Grid
Nesting of Layout
XAML Button Code sample?
Button Click="btnAbout_Click" Name="btnAbout" Foreground="#FF0000FF" ToolTip="About
Box">About</Button>