如果你要在你的C#程序中控制Windows的任务栏,有两个Windows api 可以帮到你!他们就是 FindWindowA 和 ShowWindowC#中声明如下:using System.Runtime.InteropServices;[DllImport("user32.dll", EntryPoint = "FindWindowA")]public static extern IntPtr FindWindowA(string lp1, string lp2);[DllImport("user32.dll", EntryPoint = "ShowWindow")]public static extern IntPtr ShowWindow(IntPtr hWnd, int _value);其实......