PageRenderTime 51ms CodeModel.GetById 27ms RepoModel.GetById 1ms app.codeStats 0ms

/ExpressInteropBinding/Microsoft.ServiceModel.Interop.ExtensionUtils/ConfigurationWizard/View/ErrorView.xaml

#
XAML | 20 lines | 18 code | 2 blank | 0 comment | 0 complexity | 719d4d8a30f93276fcf75c7c2213d029 MD5 | raw file
Possible License(s): CC-BY-SA-3.0, Apache-2.0
  1. <vs:DialogWindow x:Class="Microsoft.ServiceModel.Interop.ConfigurationWizard.View.ErrorView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Unhandled Exception" Height="300"
  5. xmlns:vs="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.10.0">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="Auto"/>
  9. <RowDefinition Height="*"/>
  10. </Grid.RowDefinitions>
  11. <Border BorderBrush="Black">
  12. <Label Content="An unhandled exception has occurred. The details of the exception are listed below" FontSize="12" FontWeight="Bold"/>
  13. </Border>
  14. <Border BorderBrush="Black" BorderThickness="1, 0, 1, 1" Grid.Row="1" Margin="0, 0, 0, 10">
  15. <TextBlock TextWrapping="WrapWithOverflow" Text="{Binding Exception}"/>
  16. </Border>
  17. </Grid>
  18. </vs:DialogWindow>