コード例 #1
0
ファイル: Fullscreen.cs プロジェクト: Nagraal/Tactile-Engine
        public static int ScreenY(IntPtr hWnd)
        {
            IntPtr        handle = NativeMethods.MonitorFromWindow(hWnd, MONITOR_DEFAULTTONEAREST);
            MONITORINFOEX info   = new MONITORINFOEX();

            NativeMethods.GetMonitorInfo(handle, info);
            return(info.rcMonitor.bottom - info.rcMonitor.top);
        }
コード例 #2
0
 internal static extern bool GetMonitorInfo(IntPtr hmonitor, [In, Out] MONITORINFOEX info);