(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,39 @@
using System;
using Eto.Forms;
namespace MonoGame.Tools.Pipeline
{
public partial class LogWindow : Form
{
public static Button ButtonCopy;
private Clipboard _clipboard;
public LogWindow()
{
InitializeComponent();
ButtonCopy = _buttonCopy;
Style = "LogWindow";
_clipboard = new Clipboard();
}
public string LogText
{
get { return _textAreaLog.Text; }
set { _textAreaLog.Text = value; }
}
private void LogWindow_Closed(object sender, EventArgs e)
{
PipelineSettings.Default.ErrorMessage = string.Empty;
PipelineSettings.Default.Save();
Application.Instance.Quit();
}
private void ButtonCopy_Click(object sender, EventArgs e)
{
_clipboard.Clear();
_clipboard.Text = _textAreaLog.Text;
}
}
}