通过代码实现 Windows Mobile 窗体的最小化 (转)
摘要:
//using System.Runtime.InteropServices; [DllImport("coredll")] private static extern bool ShowWindow(IntPtr hwnd, int nCmdShow); private const int SW_MINIMIZE = 6; private void mniHide_Click(object ... 阅读全文
posted @ 2008-05-22 17:42 yunxizfj 阅读(555) 评论(3) 推荐(0) 编辑