mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -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
33
GreenshotLanguageEditor/ErrorWindow.xaml.cs
Normal file
33
GreenshotLanguageEditor/ErrorWindow.xaml.cs
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Created by SharpDevelop.
|
||||
* User: jens
|
||||
* Date: 02.10.2012
|
||||
* Time: 22:52
|
||||
*
|
||||
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace GreenshotLanguageEditor
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for Window1.xaml
|
||||
/// </summary>
|
||||
public partial class ErrorWindow : Window
|
||||
{
|
||||
public ErrorWindow(string msg)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.textBox.Text = msg;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue