diff options
| author | JayXKanz666 <[email protected]> | 2017-07-06 14:02:08 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-07-06 14:02:08 +0200 |
| commit | 3d5a7f0674f23c6e02e36505502e6d29048b7bd8 (patch) | |
| tree | 5bbfc78c2d6ed20dc87032522fe37c59976bc388 /TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs | |
| parent | 3c4fd2ba2cba5b4233caa032cb86a72ebffdc688 (diff) | |
| parent | 6958c950223e1b1db9648f92a40fe7dd925ca466 (diff) | |
| download | histacom2-3d5a7f0674f23c6e02e36505502e6d29048b7bd8.tar.gz histacom2-3d5a7f0674f23c6e02e36505502e6d29048b7bd8.tar.bz2 histacom2-3d5a7f0674f23c6e02e36505502e6d29048b7bd8.zip | |
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs new file mode 100644 index 0000000..0ae74df --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs @@ -0,0 +1,29 @@ +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 Win95Installer : UserControl + { + public Win95Installer() + { + InitializeComponent(); + label1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); + cancelbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + nextbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + backbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + } + + private void Win95Installer_Load(object sender, EventArgs e) + { + label1.Text.Replace("GenericName", installname.Text); + } + } +} |
