main
 1<Window x:Class="solidware.financials.windows.ui.views.ErrorWindow"
 2    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4    Title="Oops... I'm sorry but an un-expected error occurred." Width="600">
 5    <DockPanel>
 6        <Label DockPanel.Dock="Top" Content="{Binding Message}" />
 7        <Expander>
 8            <TextBlock Text="{Binding StackTrace}"></TextBlock>
 9        </Expander>
10    </DockPanel>
11</Window>