diff options
| author | lempamo <[email protected]> | 2017-07-05 14:41:29 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-05 14:41:29 -0400 |
| commit | 525f7fce5a4c96fafba64271b8163a934b208992 (patch) | |
| tree | a7be87335f709954ce3b7b1525f9a80931d8e05c /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | |
| parent | 038e1edf03e8ea802c70f9f5f60c4b420fbb9dd8 (diff) | |
| parent | 9a972102202c5105e783c74c501cdb5dabdf22b7 (diff) | |
| download | histacom2-525f7fce5a4c96fafba64271b8163a934b208992.tar.gz histacom2-525f7fce5a4c96fafba64271b8163a934b208992.tar.bz2 histacom2-525f7fce5a4c96fafba64271b8163a934b208992.zip | |
Merge branch 'master' of https://github.com/TimeHACKDevs/TimeHACK.git
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs new file mode 100644 index 0000000..52a8938 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class WinClassicWelcome : UserControl + { + public WinClassicWelcome() + { + InitializeComponent(); + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.ParentForm.Close(); + } + } +} |
