예제 #1
0
파일: HWND.cs 프로젝트: sharoron/SharoLib
        public Point GetScreenPosFromClientPos(Point p)
        {
            Point res = p;

            NativeMethod.ClientToScreen(this, ref res);
            return(res);
        }