1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Histacom2.Engine.Template
{
public partial class WinXP : Form
{
public WinXP()
{
InitializeComponent();
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
DoubleBuffered = true;
}
public Font fnt;
public ResizeOverlay resizer = new ResizeOverlay();
public UserControl progContent;
public bool resizable = true;
public bool max = false;
public bool closeDisabled = false;
public bool isActive = true;
public bool Resizing = false;
public Bitmap ResizingBmp = null;
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int WM_SYSCOMMAND = 0x0112;
public const int HT_CAPTION = 0x2;
private const int
HTLEFT = 10,
HTRIGHT = 11,
HTTOP = 12,
HTTOPLEFT = 13,
HTTOPRIGHT = 14,
HTBOTTOM = 15,
HTBOTTOMLEFT = 16,
HTBOTTOMRIGHT = 17;
private void closebutton_MouseDown(object sender, MouseEventArgs e)
{
closebutton.BackgroundImage = Properties.Resources.WinXP_ClosePress;
}
private void closebutton_MouseLeave(object sender, EventArgs e)
{
closebutton.BackgroundImage = Properties.Resources.WinXP_Close;
}
private void closebutton_MouseEnter(object sender, EventArgs e)
{
closebutton.BackgroundImage = Properties.Resources.WinXP_CloseHover;
}
private void closebutton_Click(object sender, EventArgs e)
{
if (!closeDisabled) this.Close();
}
private void top_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left && !max)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
[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 WinXP_Load(object sender, EventArgs e)
{
}
}
}
|