diff options
| author | JayXKanz666 <[email protected]> | 2017-03-29 02:34:05 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-03-29 02:34:05 +0200 |
| commit | 20361308e38fe8c48aa10afe3d41b75e559165fc (patch) | |
| tree | f2bdb45328d8fdf7263975e06dd705b6f3d33601 /TimeHACK.Main/WinClassicForms/WinClassicIE4.cs | |
| parent | a357d77aa7a2a35f414daa0a7737003bf2660477 (diff) | |
| parent | b4025b4c6d675b1b86074fe9b4de89dc00ee9123 (diff) | |
| download | histacom2-20361308e38fe8c48aa10afe3d41b75e559165fc.tar.gz histacom2-20361308e38fe8c48aa10afe3d41b75e559165fc.tar.bz2 histacom2-20361308e38fe8c48aa10afe3d41b75e559165fc.zip | |
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/WinClassicForms/WinClassicIE4.cs')
| -rw-r--r-- | TimeHACK.Main/WinClassicForms/WinClassicIE4.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs index 77e2b76..e819238 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs @@ -4,7 +4,7 @@ using System.Windows.Forms; namespace TimeHACK { - public partial class WinClassicIE4 : Form + public partial class WinClassicIE4 : UserControl { public WinClassicIE4() { @@ -12,7 +12,7 @@ namespace TimeHACK } private void WinClassicIE4_Load(object sender, EventArgs e) { - TopMost = true; + BringToFront(); hidePrograms(); welcomeinternetscreen.Show(); welcomeinternetscreen.Dock = DockStyle.Fill; @@ -55,7 +55,7 @@ namespace TimeHACK private void closebutton_Click(object sender, EventArgs e) { - this.Close(); + ((Form)this.TopLevelControl).Close(); } private void googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) |
