◆ 무한한 가능성/& Visual C/C++

윈도우 BorderStyle Flat 일 경우.. 창이동 가능하게

치로로 2015. 6. 4. 14:12

protected override void WndProc(ref Message m)

        {

            switch (m.Msg)

            {

                case 0x84:

                    base.WndProc(ref m);

                    if ((int)m.Result == 0x1)

                        m.Result = (IntPtr)0x2;

                    return;

            }


            base.WndProc(ref m);

        }

'◆ 무한한 가능성 > & Visual C/C++' 카테고리의 다른 글

[C++] WM_PAINT - line, rectangle, ellipse, star, radian, textout  (1) 2012.03.16
[C++] Debug 참고  (0) 2012.03.15
[요약] Effective C++ 3장 (항목13~17)  (0) 2010.07.30
waveOut~()  (0) 2010.03.19
waveIn~()  (0) 2010.03.16