摘要: [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect); [StructLayout(LayoutKind.Sequential)] public struct RECT { ... 阅读全文
posted @ 2018-10-01 16:01 TMD睡觉 阅读(11906) 评论(0) 推荐(1) 编辑
摘要: [DllImport("user32.dll")] private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndlnsertAfter, int X, int Y, int cx, int cy, uint Flags); SetWindowPos( hWnd: HWND; {窗口句柄} hWn... 阅读全文
posted @ 2018-10-01 15:51 TMD睡觉 阅读(13426) 评论(0) 推荐(2) 编辑