aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Template/Infobox95.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-03-31 17:47:56 -0400
committerGitHub <[email protected]>2017-03-31 17:47:56 -0400
commit5ec8f66c1ad558a165cf621b405bee7cba48be0b (patch)
tree055b21d8788a1946b60646daa5482126a4a23ec1 /TimeHACK.Engine/Template/Infobox95.cs
parent27419aa0dce06f9af5ee28f64aace365dcb7d816 (diff)
parent6a489cc2dc2edf42a5509ded949357576731f658 (diff)
downloadhistacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.tar.gz
histacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.tar.bz2
histacom2-5ec8f66c1ad558a165cf621b405bee7cba48be0b.zip
Merge branch 'master' into master
Diffstat (limited to 'TimeHACK.Engine/Template/Infobox95.cs')
-rw-r--r--TimeHACK.Engine/Template/Infobox95.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/TimeHACK.Engine/Template/Infobox95.cs b/TimeHACK.Engine/Template/Infobox95.cs
new file mode 100644
index 0000000..838bad0
--- /dev/null
+++ b/TimeHACK.Engine/Template/Infobox95.cs
@@ -0,0 +1,55 @@
+using System;
+using System.Drawing;
+using System.Runtime.InteropServices;
+using System.Windows.Forms;
+
+namespace TimeHACK.Main.Template
+{
+ public partial class Infobox95 : Form
+ {
+ public Infobox95()
+ {
+ InitializeComponent();
+ }
+
+ 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();
+ }
+ }
+}