/ExpressInteropBinding/Microsoft.ServiceModel.Interop.ExtensionUtils/ConfigurationWizard/View/ErrorView.xaml
# · XAML · 20 lines · 18 code · 2 blank · 0 comment · 0 complexity · 719d4d8a30f93276fcf75c7c2213d029 MD5 · raw file
- <vs:DialogWindow x:Class="Microsoft.ServiceModel.Interop.ConfigurationWizard.View.ErrorView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="Unhandled Exception" Height="300"
- xmlns:vs="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.10.0">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <Border BorderBrush="Black">
- <Label Content="An unhandled exception has occurred. The details of the exception are listed below" FontSize="12" FontWeight="Bold"/>
- </Border>
- <Border BorderBrush="Black" BorderThickness="1, 0, 1, 1" Grid.Row="1" Margin="0, 0, 0, 10">
- <TextBlock TextWrapping="WrapWithOverflow" Text="{Binding Exception}"/>
- </Border>
-
- </Grid>
- </vs:DialogWindow>