diff options
| author | lempamo <[email protected]> | 2017-07-06 00:28:38 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-06 00:28:38 -0400 |
| commit | 6958c950223e1b1db9648f92a40fe7dd925ca466 (patch) | |
| tree | 5bbfc78c2d6ed20dc87032522fe37c59976bc388 /TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs | |
| parent | eb5b4265492b47bb477767cc524ff99401baaac9 (diff) | |
| download | histacom2-6958c950223e1b1db9648f92a40fe7dd925ca466.tar.gz histacom2-6958c950223e1b1db9648f92a40fe7dd925ca466.tar.bz2 histacom2-6958c950223e1b1db9648f92a40fe7dd925ca466.zip | |
New Installer for Win95
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); + } + } +} |
