WinCE的C#程序中,使程序界面最小化,最大化,隐藏等的操作

来源:互联网 发布:淘宝视频短片拍摄教程 编辑:程序博客网 时间:2024/06/06 20:06
        [DllImport("coredll.dll", EntryPoint = "ShowWindow")]
        public static extern int ShowWindow(IntPtr hwnd, int nCmdShow);


        [DllImport("coredll.dll", EntryPoint = "FindWindowW", SetLastError = true)]
        private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
0 0