#69 – Internet Explorer Can Interpret XAML Directly
September 19, 2010 Leave a comment
XAML is not code to be executed, but a definition of a user interface that can be parsed by a tool that understands it. You can load a .xaml file directly into Internet Explorer and it will render the user interface elements defined by the XAML.
For example, consider the following XAML fragment.
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > <Button Content="Click Me" Height="23" Width="75"/> </StackPanel>
You can save this fragment to a .xaml file and load it into Internet Explorer. The browser will then interpret the XAML and render the user interface that it describes: