//Create a control inherited from Label and add the following code.protectedoverridevoidWndProc(ref Message m)
{
constint WM_NCHITTEST = 0x0084;
constint HTTRANSPARENT = (-1);
if (m.Msg == WM_NCHITTEST)
{
m.Result = (IntPtr)HTTRANSPARENT;
}
else
{
base.WndProc(ref m);
}
}