/* * 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 { /// /// Interaction logic for Window1.xaml /// public partial class ErrorWindow : Window { public ErrorWindow(string msg) { InitializeComponent(); this.textBox.Text = msg; } } }