weiryang

C# 隐藏任务栏开始按钮 关闭shell

分类: .NET C# 789人阅读 评论(1) 收藏 举报

 一、隐藏任务栏 开始按钮

         using System.Runtime.InteropServices;

        [DllImport("user32.dll")]
        public static extern int ShowWindow(IntPtr hwnd, int nCmdShow);
        [DllImport("user32.dll")]
        public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
        [DllImport("user32.dll")]
        public static extern IntPtr FindWindowEx(IntPtr hWnd1, IntPtr hWnd2, string lpsz1, string lpsz2);

     

       IntPtr trayHwnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Shell_TrayWnd", null);
            IntPtr hStar = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Button", null);
            if (trayHwnd != IntPtr.Zero && hStar != IntPtr.Zero)
            {
                //ShowWindow(FindWindow("progman", null), 0);
                //ShowWindow(trayHwnd, SW_HIDE);
                //ShowWindow(hStar, SW_HIDE);

                ShowWindow(trayHwnd, 0);
                ShowWindow(hStar, 0);
            }

       显示反之:SW_SHOW即可。

 

二、关闭shell

                Process ps;
                ps = new Process();
                ps.StartInfo.FileName = "CloseExplorer.bat";
                ps.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                ps.Start();  

                CloseExplorer.bat文件内容:taskkill /f /im explorer.exe
                exit     即可

分类:

技术点:

相关文章:

  • 2021-09-03
  • 2021-12-28
  • 2021-12-23
  • 2021-12-23
  • 2021-12-25
  • 2021-12-23
  • 2021-12-23
猜你喜欢
  • 2021-11-30
  • 2021-07-24
  • 2022-12-23
  • 2022-01-02
  • 2021-11-30
  • 2022-01-02
  • 2021-12-23
相关资源
相似解决方案