diff options
| author | AShifter <[email protected]> | 2017-03-31 14:17:32 -0600 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-03-31 14:17:32 -0600 |
| commit | 82557462d1bb0a7fb776692cd0887b00919999d8 (patch) | |
| tree | d885bb0fb9b2d518058e6e0025dbf29fed0db4bb /TimeHACK.Engine/Template/WinClassic.cs | |
| parent | e2213726e627553783571fa631dd032f773f8794 (diff) | |
| download | histacom2-82557462d1bb0a7fb776692cd0887b00919999d8.tar.gz histacom2-82557462d1bb0a7fb776692cd0887b00919999d8.tar.bz2 histacom2-82557462d1bb0a7fb776692cd0887b00919999d8.zip | |
Added Infobox
Added an Infobox into the TimeHACK.Engine and removed extra
WindowManager creations in Win95.cs
also probably did some other honeyfries
Diffstat (limited to 'TimeHACK.Engine/Template/WinClassic.cs')
| -rw-r--r-- | TimeHACK.Engine/Template/WinClassic.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs index de88c1a..db85a6a 100644 --- a/TimeHACK.Engine/Template/WinClassic.cs +++ b/TimeHACK.Engine/Template/WinClassic.cs @@ -2,7 +2,7 @@ using System.Runtime.InteropServices; using System.Windows.Forms; -namespace TimeHACK.Engine.Template +namespace TimeHACK.Main.Template { public partial class WinClassic : Form { @@ -55,7 +55,7 @@ namespace TimeHACK.Engine.Template this.Dock = DockStyle.Fill; this.WindowState = FormWindowState.Maximized; max = true; - maximizebutton.Image = Properties.Resources.WinClassicRestore; + maximizebutton.Image = Engine.Properties.Resources.WinClassicRestore; } else { @@ -70,7 +70,7 @@ namespace TimeHACK.Engine.Template this.Dock = DockStyle.None; this.WindowState = FormWindowState.Normal; max = false; - maximizebutton.Image = Properties.Resources.WinClassicMax; + maximizebutton.Image = Engine.Properties.Resources.WinClassicMax; } } |
