mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 14:03:23 -07:00
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:
parent
cee551da87
commit
2d7bab0cef
4 changed files with 768 additions and 0 deletions
26
GreenshotLanguageEditor/ErrorWindow.xaml
Normal file
26
GreenshotLanguageEditor/ErrorWindow.xaml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue