ShowWindowAsync系统方法cmdShow参数值含义

        private const int SW_HIDE = 0;   //从任务栏隐藏
        private const int SW_NORMAL = 1;    //正常弹出窗体 
        private const int SW_MAXIMIZE = 3;    //最大化弹出窗体 
        private const int SW_SHOWNOACTIVATE = 4;   //激活窗体/恢复窗体/还原窗体
        private const int SW_SHOW = 5;   //显示窗体,最小化时不会最大化
        private const int SW_MINIMIZE = 6;   //最小化
        private const int SW_RESTORE = 9;   
        private const int SW_SHOWDEFAULT = 10; 

原文地址:https://www.cnblogs.com/tian2008/p/8086719.html