aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-05 19:33:31 +0200
committerJayXKanz666 <[email protected]>2017-07-05 19:33:31 +0200
commit1183a36cff9043e04642cc0fd9af9edd7f537903 (patch)
tree4ccab1a09369ac65d66219fa082df7d91ffddf0c /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
parent0c83910464ce2f443cb315227706f8a58167bbef (diff)
parent9a972102202c5105e783c74c501cdb5dabdf22b7 (diff)
downloadhistacom2-1183a36cff9043e04642cc0fd9af9edd7f537903.tar.gz
histacom2-1183a36cff9043e04642cc0fd9af9edd7f537903.tar.bz2
histacom2-1183a36cff9043e04642cc0fd9af9edd7f537903.zip
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs25
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();
+ }
+ }
+}