Files
ayanova7/source/Plugins/AyaNova.Plugin.ClientRemover/ProgressForm.cs
2018-06-29 19:47:36 +00:00

30 lines
617 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AyaNova.Plugin.ClientRemover
{
public partial class ProgressForm : Form
{
public ProgressForm()
{
InitializeComponent();
}
public void Append(string txt)
{
edOut.AppendText(txt + "\r\n");
}
private void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}
}
}