(ded4a3e0a) v0.9.0.7

This commit is contained in:
Joonas Rikkonen
2019-06-25 16:00:44 +03:00
parent e5ae622c77
commit 4a51db77b5
1777 changed files with 421528 additions and 917 deletions
@@ -0,0 +1,48 @@
using Eto.Forms;
using Eto.Drawing;
namespace MonoGame.Tools.Pipeline
{
public partial class LogWindow : Form
{
private TextArea _textAreaLog;
private Button _buttonCopy;
private void InitializeComponent()
{
Title = "Crash Report";
Size = new Size(800, 400);
var layout1 = new DynamicLayout();
layout1.Padding = new Padding(4);
layout1.Spacing = new Size(4, 4);
var layout2 = new DynamicLayout();
layout2.BeginHorizontal();
var label1 = new Label();
label1.VerticalAlignment = VerticalAlignment.Bottom;
label1.Text = "Pipeline Tool has crashed, please copy the following exception when reporting the error: ";
layout2.Add(label1, true, true);
_buttonCopy = new Button();
_buttonCopy.Text = "Copy to Clipboard";
if (!Global.UseHeaderBar)
layout2.Add(_buttonCopy, false, true);
layout1.Add(layout2, true, false);
_textAreaLog = new TextArea();
_textAreaLog.ReadOnly = true;
_textAreaLog.Wrap = false;
layout1.Add(_textAreaLog, true, true);
Content = layout1;
Closed += LogWindow_Closed;
_buttonCopy.Click += ButtonCopy_Click;
}
}
}