language editor displays stacktrace now in case of unexpected error

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2116 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
JKlingen 2012-10-02 21:30:53 +00:00
commit 2d7bab0cef
4 changed files with 768 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="GreenshotLanguageEditor.ErrorWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Error"
ResizeMode="CanResizeWithGrip"
Height="345"
Width="610">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition
Width="0*" />
<ColumnDefinition
Width="*" />
</Grid.ColumnDefinitions>
<TextBox
Name="textBox"
Grid.Column="1"
Grid.Row="0"
Margin="8,8,0,0"
TextWrapping="Wrap"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
VerticalScrollBarVisibility="Visible"
/>
</Grid>
</Window>