24 lines
404 B
C#
24 lines
404 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace EveOPreview.View
|
|
{
|
|
sealed class StaticThumbnailImage : PictureBox
|
|
{
|
|
protected override void WndProc(ref Message m)
|
|
{
|
|
const int WM_NCHITTEST = 0x0084;
|
|
const int HTTRANSPARENT = (-1);
|
|
|
|
if (m.Msg == WM_NCHITTEST)
|
|
{
|
|
m.Result = (IntPtr)HTTRANSPARENT;
|
|
}
|
|
else
|
|
{
|
|
base.WndProc(ref m);
|
|
}
|
|
}
|
|
}
|
|
}
|