d@0: using System; d@0: using System.Windows.Forms; d@0: d@0: namespace DeMaskingLT d@0: { d@0: public partial class ThankYou : Form d@0: { d@0: public ThankYou() d@0: { d@0: InitializeComponent(); d@0: } d@0: d@0: public ThankYou(string text) d@0: { d@0: InitializeComponent(); d@0: textBox1.Text = text; d@0: } d@0: d@0: private void button1_Click(object sender, EventArgs e) d@0: { d@0: this.Close(); d@0: } d@0: } d@0: }