C# 隐藏任务栏开始按钮 关闭shell
一、隐藏任务栏 开始按钮
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 即可