diff options
| author | lempamo <[email protected]> | 2017-07-06 13:17:41 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-06 13:17:41 -0400 |
| commit | 77f783fe2b6999720c900aaf32103bec906f9da9 (patch) | |
| tree | f4374934f8e8e514cd94e2dc80c1309a19386f2b /TimeHACK.Main/OS/Win95/Win95Apps | |
| parent | a3d4fab4392a149492e4896411cc44f0adf9eb2e (diff) | |
| download | histacom2-77f783fe2b6999720c900aaf32103bec906f9da9.tar.gz histacom2-77f783fe2b6999720c900aaf32103bec906f9da9.tar.bz2 histacom2-77f783fe2b6999720c900aaf32103bec906f9da9.zip | |
You can install WebChat again
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs index e3924ee..8178a30 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs @@ -13,9 +13,17 @@ namespace TimeHACK.OS.Win95.Win95Apps public partial class Win95Installer : UserControl { public int installStage = 0; + private string prog; private Timer installbar = new Timer(); - public Win95Installer() + public event EventHandler InstallCompleted; + + protected void OnInstallCompleted(EventArgs e) + { + if (InstallCompleted != null) InstallCompleted(this, e); + } + + public Win95Installer(string progName) { InitializeComponent(); label1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); @@ -45,6 +53,7 @@ namespace TimeHACK.OS.Win95.Win95Apps } else { + OnInstallCompleted(EventArgs.Empty); panel3.Hide(); panel4.Show(); backbutton1.Hide(); |
