From 29fdc4c04f031f88159d8d300329208d44ce7b9e Mon Sep 17 00:00:00 2001 From: JayXKanz666 Date: Thu, 6 Jul 2017 01:59:15 +0200 Subject: Made the Welcome screen look MUCH better Next time, Justin, do it right. ;) --- TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (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 index 52a8938..b0761b1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs @@ -15,11 +15,15 @@ namespace TimeHACK.OS.Win95.Win95Apps public WinClassicWelcome() { InitializeComponent(); + + btnTour.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + btnOnline.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + btnClose.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); } private void btnClose_Click(object sender, EventArgs e) { - this.ParentForm.Close(); + ParentForm.Close(); } } } -- cgit v1.2.3