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(); } } }