diff options
| author | AShifter <[email protected]> | 2017-04-22 13:52:18 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-22 13:52:18 -0600 |
| commit | 29f9b993345d8ae0b20328786eaa25e7ae0ceb55 (patch) | |
| tree | d6f255e82abb086a11d8678827ac2eea94f1f6fe /TimeHACK.Engine/Template/Infobox95.cs | |
| parent | e6474bbf221d26d227e42174c4d1ab939987be2b (diff) | |
| parent | e0b4f16b01728d772ec2c3907116e71b3957f473 (diff) | |
| download | histacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.tar.gz histacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.tar.bz2 histacom2-29f9b993345d8ae0b20328786eaa25e7ae0ceb55.zip | |
Merge pull request #46 from AShifter/master
commit
Diffstat (limited to 'TimeHACK.Engine/Template/Infobox95.cs')
| -rw-r--r-- | TimeHACK.Engine/Template/Infobox95.cs | 39 |
1 files changed, 2 insertions, 37 deletions
diff --git a/TimeHACK.Engine/Template/Infobox95.cs b/TimeHACK.Engine/Template/Infobox95.cs index 69bbeda..e764e47 100644 --- a/TimeHACK.Engine/Template/Infobox95.cs +++ b/TimeHACK.Engine/Template/Infobox95.cs @@ -5,7 +5,7 @@ using System.Windows.Forms; namespace TimeHACK.Engine.Template { - public partial class Infobox95 : Form + public partial class Infobox95 : UserControl { public Infobox95() { @@ -14,42 +14,7 @@ namespace TimeHACK.Engine.Template private void ok_Click(object sender, EventArgs e) { - Close(); - } - - private void closebutton_Paint(object sender, PaintEventArgs e) - { - // Paint the StartMenu - ControlPaint.DrawBorder(e.Graphics, ok.ClientRectangle, - SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset, - SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset, - SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset, - SystemColors.ControlLightLight, 2, ButtonBorderStyle.Outset); - } - - public bool closeDisabled = false; - - public const int WM_NCLBUTTONDOWN = 0xA1; - public const int HT_CAPTION = 0x2; - - [DllImportAttribute("user32.dll")] - public static extern int SendMessage(IntPtr hWnd, - int Msg, int wParam, int lParam); - [DllImportAttribute("user32.dll")] - public static extern bool ReleaseCapture(); - - private void Programtopbar_drag(object sender, MouseEventArgs e) - { - if (e.Button == MouseButtons.Left) - { - ReleaseCapture(); - SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0); - } - } - - private void closebutton_Click(object sender, EventArgs e) - { - Close(); + this.ParentForm.Close(); } } } |
