annotate DeMaskingLT/ThankYou.cs @ 3:e0bd22354f3f tip

Fixed name bug
author Geogaddi\David <d.m.ronan@qmul.ac.uk>
date Fri, 07 Jul 2017 12:34:24 +0100
parents e8147674e932
children
rev   line source
d@0 1 using System;
d@0 2 using System.Windows.Forms;
d@0 3
d@0 4 namespace DeMaskingLT
d@0 5 {
d@0 6 public partial class ThankYou : Form
d@0 7 {
d@0 8 public ThankYou()
d@0 9 {
d@0 10 InitializeComponent();
d@0 11 }
d@0 12
d@0 13 public ThankYou(string text)
d@0 14 {
d@0 15 InitializeComponent();
d@0 16 textBox1.Text = text;
d@0 17 }
d@0 18
d@0 19 private void button1_Click(object sender, EventArgs e)
d@0 20 {
d@0 21 this.Close();
d@0 22 }
d@0 23 }
d@0 24 }