摘要: [DllImport("user32.dll")] public static extern IntPtr FindWindow(IntPtr sClassName, string sWindowName); [DllImport("user32.dll")] public static extern bool MoveWindow(IntPtr Window, int x, int y, int w, int h, bool rePaint);使用FindWindow得到需要移动的窗体的句柄使用MoveWindow改变窗体的位置、大小... 阅读全文
posted @ 2011-09-19 11:41 Mo 阅读(208) 评论(0) 推荐(0) 编辑