Der Internet-Explorer kann XAML darstellen, allerdings darf kein Verweis auf die Code-Datei enthalten sein. Also keine OnClicks und so.
Öffne einfach mal folgendes als XAML-Datei
Delphi-Quellcode:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1" Height="300" Width="400">
<Grid>
<Button Height="71" HorizontalAlignment="Left" Margin="31,29,0,0" Name="button1" VerticalAlignment="Top" Width="141">Button</Button>
<ListBox Margin="22,119,27,22" Name="listBox1" />
<Label Height="46" Margin="184,23,56,0" Name="label1" VerticalAlignment="Top">Label</Label>
</Grid>
</Page>