diff options
| author | JayXKanz666 <[email protected]> | 2017-07-06 01:59:15 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-07-06 01:59:15 +0200 |
| commit | 29fdc4c04f031f88159d8d300329208d44ce7b9e (patch) | |
| tree | 2585adf80aee4b90dcad3ade367b85141a4401e5 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | |
| parent | f51799e30bfe11d0243909d41758cdc33c736378 (diff) | |
| download | histacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.tar.gz histacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.tar.bz2 histacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.zip | |
Made the Welcome screen look MUCH better
Next time, Justin, do it right. ;)
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | 6 |
1 files changed, 5 insertions, 1 deletions
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(); } } } |
