码迷,mamicode.com
首页 > Windows程序 > 详细

C#显示及隐藏任务栏

时间:2018-09-22 23:24:11      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:res   port   rest   user   .dll   显示   ext   win   task   

private const int SW_HIDE = 0; //隐藏任务栏
        private const int SW_RESTORE = 9;//显示任务栏

        [DllImport("user32.dll")]
        public static extern int ShowWindow(int hwnd, int nCmdShow);
        [DllImport("user32.dll")]
        public static extern int FindWindow(string lpClassName, string lpWindowName);

        /// <summary>
        /// 显示任务栏
        /// </summary>
        public static void showtask()
        {
            ShowWindow(FindWindow("Shell_TrayWnd", null), SW_RESTORE);
        }
        /// <summary>
        /// 隐藏任务栏
        /// </summary>
        public static void Hidetask()
        {
            ShowWindow(FindWindow("Shell_TrayWnd", null), SW_HIDE);
        }

  

C#显示及隐藏任务栏

标签:res   port   rest   user   .dll   显示   ext   win   task   

原文地址:https://www.cnblogs.com/Hooper_he/p/9691495.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!