From 26f2a5fb9e4c19ce4d2feac2565eac5319f0f9d8 Mon Sep 17 00:00:00 2001 From: jtsshieh Date: Wed, 5 Jul 2017 12:54:34 -0400 Subject: Welcome Page Working welcome page for winn95 except I cannot get the system to save the settings so it will appear every single time! --- .../OS/Win95/Win95Apps/WinClassicWelcome.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs') 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(); + } + } +} -- cgit v1.2.3