| View previous topic :: View next topic |
| Author |
Message |
suraj
Joined: 27 Aug 2007 Posts: 154
|
Posted: Tue Jul 20, 2010 9:28 am Post subject: What is XAML & give me an example? |
|
|
Hi,
Can any one explain what is XAML & give me an example XAML tags?
Thanks in advance... |
|
| Back to top |
|
 |
mukundh
Joined: 17 Sep 2009 Posts: 43
|
Posted: Tue Jul 20, 2010 9:53 am Post subject: |
|
|
Hi suraj,
* XAML-Extensible Application Markup Language.Also pronounced as "Zammel".
* XAML is an XML-based markup language developed by Microsoft.
* Developing an application in Microsoft Expression Blend means writing XAML code, either in source code (or) in the Design view of Expression Blend.
* XAML is used for developing Silver Light Applications,WPF(Windows Presentation Foundation) applications.
* Silverlight offers several XAML tags including common form tags like textbox, button ... and various other UI elements like rectangle.
* For example if you want to develop a button or rectangle this is the XAML you need to use:
<Grid x:Name="first" Background="Red">
<Rectangle Fill="Blue" Width="120" Height="90" />
<Button Background="Green" Foreground="Yellow" Content="Submit"/>
</Grid>
Thank you... |
|
| Back to top |
|
 |
|