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(); } } }