diff options
| author | Jason <[email protected]> | 2017-07-06 02:02:05 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-06 02:02:05 +0200 |
| commit | 0304556be7047911a98b1d009fe967d1582caa94 (patch) | |
| tree | 2585adf80aee4b90dcad3ade367b85141a4401e5 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs | |
| parent | 5ff581c5a68b4ed2beebde103b2b358d14c30cca (diff) | |
| parent | 29fdc4c04f031f88159d8d300329208d44ce7b9e (diff) | |
| download | histacom2-0304556be7047911a98b1d009fe967d1582caa94.tar.gz histacom2-0304556be7047911a98b1d009fe967d1582caa94.tar.bz2 histacom2-0304556be7047911a98b1d009fe967d1582caa94.zip | |
Merge pull request #117 from jayxkanz666/master
Made the welcome screen look like the original
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(); } } } |
