diff options
| author | jtsshieh <[email protected]> | 2017-07-05 12:54:34 -0400 |
|---|---|---|
| committer | jtsshieh <[email protected]> | 2017-07-05 12:54:34 -0400 |
| commit | 26f2a5fb9e4c19ce4d2feac2565eac5319f0f9d8 (patch) | |
| tree | 22274ae6ef9fe35b1fd2a683dc21ad7647094d6b /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | |
| parent | 1babfac033b8add0dee2a8c9a4b34fd6f90ac222 (diff) | |
| download | histacom2-26f2a5fb9e4c19ce4d2feac2565eac5319f0f9d8.tar.gz histacom2-26f2a5fb9e4c19ce4d2feac2565eac5319f0f9d8.tar.bz2 histacom2-26f2a5fb9e4c19ce4d2feac2565eac5319f0f9d8.zip | |
Welcome Page
Working welcome page for winn95 except I cannot get the system to save the settings so it will appear every single time!
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(); + } + } +} |
