This commit is contained in:
2018-08-29 17:40:11 +00:00
parent 9048d6b98e
commit 9e5e12f5be
5 changed files with 55 additions and 35 deletions

View File

@@ -16,6 +16,19 @@ namespace AyaNova.Plugin.Dump
InitializeComponent();
}
public void StartedImport()
{
Cursor.Current = Cursors.WaitCursor;
btnClose.Enabled = false;
}
public void FinishedImport()
{
Cursor.Current = Cursors.Default;
btnClose.Enabled = true;
}
public void Append(string txt)
{
edOut.AppendText(txt + "\r\n");