如题~

解决方案 »

  1.   

    枚举任务栏窗口
    private const int SW_HIDE = 0x00;  
    private const int SW_SHOW = 0x0001;  
    [DllImport("coredll.dll", CharSet=CharSet.Auto)]  
    private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);  [DllImport("coredll.dll", CharSet=CharSet.Auto)]  
    private static extern bool ShowWindow(IntPtr hwnd, int nCmdShow);  [DllImport("coredll.dll", CharSet=CharSet.Auto)]  
    private static extern bool EnableWindow(IntPtr hwnd, bool enabled); 
    http://topic.csdn.net/u/20090906/00/1f627abb-9a08-4b11-acbb-e378885f1a4b.html