Improve IoErrorView.

This commit is contained in:
daniel 2017-03-02 16:32:46 +01:00
parent 2cbfe5c3fa
commit 9f7b0313a3
1 changed files with 3 additions and 2 deletions

View File

@ -38,7 +38,7 @@
</TextBlock.Effect>
</TextBlock>
<StackPanel DockPanel.Dock="Bottom" HorizontalAlignment="Right" Margin="0 10 0 0">
<Button Content="Schließen" Command="{Binding CloseViewCommand}" />
<Button Content="Schließen" IsCancel="True" IsDefault="True" Command="{Binding CloseViewCommand}" />
</StackPanel>
<StackPanel>
<TextBlock TextWrapping="Wrap">
@ -47,7 +47,8 @@
<TextBlock Margin="0 10 0 0">
Fehlermeldung:
</TextBlock>
<TextBlock Margin="0 5 0 0" Text="{Binding Message}" />
<TextBlock Margin="0 5 0 0" Text="{Binding Message}"
TextWrapping="Wrap" Foreground="Crimson" />
</StackPanel>
</DockPanel>
</Window>