コード例 #1
0
ファイル: HWND.cs プロジェクト: sharoron/SharoLib
        public Point GetScreenPosFromClientPos(Point p)
        {
            Point res = p;

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