diff options
Diffstat (limited to 'AleeBrowser/Form2.cs')
| -rw-r--r-- | AleeBrowser/Form2.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/AleeBrowser/Form2.cs b/AleeBrowser/Form2.cs new file mode 100644 index 0000000..e48f335 --- /dev/null +++ b/AleeBrowser/Form2.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeBrowser +{ + public partial class Form2 : Form + { + public Form2() + { + InitializeComponent(); + } + + private void Form2_Load(object sender, EventArgs e) + { + + } + + private void button1_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} |
